Revert "Minor improvements"

This reverts commit 24241d3485.
This commit is contained in:
Arkadiusz Fal 2023-05-26 23:24:00 +02:00
parent ca7195caba
commit 1d61dec8eb
2 changed files with 9 additions and 13 deletions

View File

@ -388,7 +388,7 @@ final class PlayerModel: ObservableObject {
if !upgrading, !video.isLocal { if !upgrading, !video.isLocal {
resetSegments() resetSegments()
DispatchQueue.global(qos: .userInitiated).async { [weak self] in DispatchQueue.main.async { [weak self] in
self?.sponsorBlock.loadSegments( self?.sponsorBlock.loadSegments(
videoID: video.videoID, videoID: video.videoID,
categories: Defaults[.sponsorBlockCategories] categories: Defaults[.sponsorBlockCategories]
@ -408,23 +408,19 @@ final class PlayerModel: ObservableObject {
resetSegments() resetSegments()
} }
DispatchQueue.global(qos: .userInitiated).asyncAfter(deadline: .now() + 0.25) { (withBackend ?? backend).playStream(
(withBackend ?? self.backend).playStream(
stream, stream,
of: video, of: video,
preservingTime: preservingTime, preservingTime: preservingTime,
upgrading: upgrading upgrading: upgrading
) )
}
DispatchQueue.main.async { DispatchQueue.main.async {
self.forceBackendOnPlay = nil self.forceBackendOnPlay = nil
} }
if !upgrading { if !upgrading {
DispatchQueue.global(qos: .userInitiated).asyncAfter(deadline: .now() + 0.5) { updateCurrentArtwork()
self.updateCurrentArtwork()
}
} }
} }

View File

@ -75,7 +75,7 @@ final class SponsorBlockAPI: ObservableObject {
self.videoID = videoID self.videoID = videoID
DispatchQueue.global(qos: .userInitiated).async { [weak self] in DispatchQueue.main.async { [weak self] in
self?.requestSegments(categories: categories, completionHandler: completionHandler) self?.requestSegments(categories: categories, completionHandler: completionHandler)
} }
} }