We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7425958 commit 8a4d90dCopy full SHA for 8a4d90d
app/src/main/java/org/schabi/newpipe/player/Player.java
@@ -467,10 +467,12 @@ public void handleIntent(@NonNull final Intent intent) {
467
}
468
469
UIs.call(PlayerUi::setupAfterIntent);
470
- NavigationHelper.sendPlayerStartedEvent(context,
471
- playQueue.getItem().getTitle(),
472
- playQueue.getItem().getUploader()
473
- );
+ if (playQueue != null) {
+ NavigationHelper.sendPlayerStartedEvent(context,
+ playQueue.getItem().getTitle(),
+ playQueue.getItem().getUploader()
474
+ );
475
+ }
476
477
478
private void initUIsForCurrentPlayerType() {
0 commit comments