Send NotificationDismissReceiver intent in onTaskRemoved

This commit is contained in:
vfsfitvnm 2022-09-01 15:25:03 +02:00
parent 6b26ad1fd9
commit 1f88238e78

View file

@ -220,11 +220,7 @@ class PlayerService : InvincibleService(), Player.Listener, PlaybackStatsListene
override fun onTaskRemoved(rootIntent: Intent?) {
if (!player.shouldBePlaying) {
if (isPersistentQueueEnabled) {
broadCastPendingIntent<NotificationDismissReceiver>().send()
} else {
stopSelf()
}
broadCastPendingIntent<NotificationDismissReceiver>().send()
}
super.onTaskRemoved(rootIntent)
}