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

View File

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