Fix clicking timestamp shows Toast "Playing in popup mode"

Fixes #6662
This commit is contained in:
vhouriet 2021-10-05 18:15:36 +02:00
parent 4c5fc7fa7c
commit 1c9f68bcae
1 changed files with 3 additions and 1 deletions

View File

@ -146,7 +146,9 @@ public final class NavigationHelper {
return;
}
Toast.makeText(context, R.string.popup_playing_toast, Toast.LENGTH_SHORT).show();
if (PlayerHolder.getInstance().getType() != PlayerType.POPUP) {
Toast.makeText(context, R.string.popup_playing_toast, Toast.LENGTH_SHORT).show();
}
final Intent intent = getPlayerIntent(context, MainPlayer.class, queue, resumePlayback);
intent.putExtra(Player.PLAYER_TYPE, MainPlayer.PlayerType.POPUP.ordinal());
ContextCompat.startForegroundService(context, intent);