Fixed Classic notification crash

This commit is contained in:
Prathamesh More 2022-04-13 20:56:41 +05:30
parent 4a7c367ab5
commit 60b740021a

View file

@ -261,8 +261,8 @@ class PlayingNotificationClassic(
override fun setPlaying(isPlaying: Boolean) { override fun setPlaying(isPlaying: Boolean) {
getPlayPauseBitmap(isPlaying).also { getPlayPauseBitmap(isPlaying).also {
contentView.setImageViewBitmap(R.id.action_play_pause, it) contentView?.setImageViewBitmap(R.id.action_play_pause, it)
bigContentView.setImageViewBitmap(R.id.action_play_pause, it) bigContentView?.setImageViewBitmap(R.id.action_play_pause, it)
} }
} }