mirror of
https://github.com/yattee/yattee.git
synced 2025-08-06 10:44:06 +00:00
Fix swiftformat issues
This commit is contained in:
@@ -103,7 +103,7 @@ final class AVPlayerBackend: PlayerBackend {
|
||||
|
||||
private var timeObserverThrottle = Throttle(interval: 2)
|
||||
|
||||
internal var controlsUpdates = false
|
||||
var controlsUpdates = false
|
||||
|
||||
init() {
|
||||
addFrequentTimeObserver()
|
||||
|
@@ -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] {
|
||||
|
@@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user