Fix swiftformat issues

This commit is contained in:
Arkadiusz Fal
2023-09-23 15:07:27 +02:00
parent 2330924fef
commit dfda1181e2
7 changed files with 15 additions and 15 deletions

View File

@@ -103,7 +103,7 @@ final class AVPlayerBackend: PlayerBackend {
private var timeObserverThrottle = Throttle(interval: 2)
internal var controlsUpdates = false
var controlsUpdates = false
init() {
addFrequentTimeObserver()

View File

@@ -90,7 +90,7 @@ final class MPVBackend: PlayerBackend {
private var onFileLoaded: (() -> Void)?
internal var controlsUpdates = false
var controlsUpdates = false
private var timeObserverThrottle = Throttle(interval: 2)
var suggestedPlaybackRates: [Double] {

View File

@@ -13,7 +13,7 @@ final class SponsorBlockAPI: ObservableObject {
@Published var segments = [Segment]()
static func categoryDescription(_ name: String) -> String? {
guard Self.categories.contains(name) else {
guard categories.contains(name) else {
return nil
}
@@ -36,7 +36,7 @@ final class SponsorBlockAPI: ObservableObject {
}
static func categoryDetails(_ name: String) -> String? {
guard Self.categories.contains(name) else {
guard categories.contains(name) else {
return nil
}