diff --git a/src/musikdroid/app/src/main/java/io/casey/musikcube/remote/service/system/SystemService.kt b/src/musikdroid/app/src/main/java/io/casey/musikcube/remote/service/system/SystemService.kt index ea74d2bb1..18b17f2e3 100644 --- a/src/musikdroid/app/src/main/java/io/casey/musikcube/remote/service/system/SystemService.kt +++ b/src/musikdroid/app/src/main/java/io/casey/musikcube/remote/service/system/SystemService.kt @@ -353,13 +353,14 @@ class SystemService : Service() { override fun run() { playback?.let { pb -> when (pb.state) { - PlaybackState.Playing, - PlaybackState.Buffering, - PlaybackState.Paused -> { + PlaybackState.Playing -> { updateNotificationAndSessionDebouncer.call() scheduleNotificationTimeUpdate() } - PlaybackState.Stopped -> Unit + PlaybackState.Buffering, + PlaybackState.Paused, + PlaybackState.Stopped -> { + } } } }