Merge pull request #7014 from litetex/fix-double-tapping-replay-button

Fixed double tapping the replay button
pull/7024/head
Tobi 2021-08-29 18:43:28 +02:00 zatwierdzone przez GitHub
commit 46f74b908a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -2765,7 +2765,9 @@ public final class Player implements
Log.d(TAG, "onPlayPause() called");
}
if (getPlayWhenReady()) {
if (getPlayWhenReady()
// When state is completed (replay button is shown) then (re)play and do not pause
&& currentState != STATE_COMPLETED) {
pause();
} else {
play();