Merge pull request #6570 from Redirion/fixnpe
Fix NPE when connecting via BT
This commit is contained in:
commit
83b198f6fe
|
@ -2160,7 +2160,10 @@ public final class Player implements
|
|||
|
||||
private void onCompleted() {
|
||||
if (DEBUG) {
|
||||
Log.d(TAG, "onCompleted() called");
|
||||
Log.d(TAG, "onCompleted() called" + (playQueue == null ? ". playQueue is null" : ""));
|
||||
}
|
||||
if (playQueue == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
animate(binding.playPauseButton, false, 0, AnimationType.SCALE_AND_ALPHA, 0,
|
||||
|
|
Loading…
Reference in New Issue