Merge pull request #4463 from opusforlife2/confirm_queue_delete_one_track

Ask for confirmation before clearing queue even if only 1 video in it
pull/4037/head
Stypox 2020-10-10 22:01:55 +02:00 zatwierdzone przez GitHub
commit cf75e40332
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 2 usunięć

Wyświetl plik

@ -2074,8 +2074,7 @@ public class VideoDetailFragment
if (isClearingQueueConfirmationRequired(activity)
&& playerIsNotStopped()
&& activeQueue != null
&& !activeQueue.equals(playQueue)
&& activeQueue.getStreams().size() > 1) {
&& !activeQueue.equals(playQueue)) {
showClearingQueueConfirmation(onAllow);
} else {
onAllow.run();