Fixed Bottom Toolbar not clickable in now playing when Shuffle is clicked

main
Prathamesh More 2021-11-25 01:45:34 +05:30
parent 976d9d53cc
commit 6f7e97ac09
1 changed files with 3 additions and 1 deletions

View File

@ -234,7 +234,9 @@ abstract class AbsSlidingMusicPanelActivity : AbsMusicServiceActivity() {
super.onQueueChanged()
// Mini player should be hidden in Playing Queue
// it may pop up if hideBottomSheet is called
if (currentFragment(R.id.fragment_container) !is PlayingQueueFragment) {
if (currentFragment(R.id.fragment_container) !is PlayingQueueFragment &&
bottomSheetBehavior.state != STATE_EXPANDED
) {
hideBottomSheet(MusicPlayerRemote.playingQueue.isEmpty())
}
}