mirror of
https://github.com/sudoxnym/audiobookshelf-atv.git
synced 2026-07-13 23:42:21 +00:00
fixed if statement syntax
This commit is contained in:
parent
a3794a6a6a
commit
65b69cc020
1 changed files with 2 additions and 1 deletions
|
|
@ -366,8 +366,9 @@ class SleepTimerManager constructor(private val playerNotificationService: Playe
|
|||
setSleepTimer(deviceSettings.sleepTimerLength, false)
|
||||
}
|
||||
} else {
|
||||
if !isFirstAutoSleepTimer:
|
||||
if (!isFirstAutoSleepTimer) {
|
||||
isFirstAutoSleepTimer = true
|
||||
}
|
||||
Log.d(tag, "Current hour $currentHour is NOT between ${deviceSettings.autoSleepTimerStartTime} and ${deviceSettings.autoSleepTimerEndTime}")
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue