1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-09-19 18:59:46 +00:00

Fix NPE in MediaSessionPlayerUi while destroying player

This commit is contained in:
Stypox 2024-07-11 09:30:22 +02:00
parent 9828586762
commit 9f766ebf78
No known key found for this signature in database
GPG Key ID: 4BDF1B40A49FDD23

View File

@ -38,7 +38,9 @@ public class MediaSessionPlayerUi extends PlayerUi
implements SharedPreferences.OnSharedPreferenceChangeListener {
private static final String TAG = "MediaSessUi";
@Nullable
private MediaSessionCompat mediaSession;
@Nullable
private MediaSessionConnector sessionConnector;
private final String ignoreHardwareMediaButtonsKey;
@ -198,6 +200,11 @@ public class MediaSessionPlayerUi extends PlayerUi
return;
}
if (sessionConnector == null) {
// sessionConnector will be null after destroyPlayer is called
return;
}
// only use the fourth and fifth actions (the settings page also shows only the last 2 on
// Android 13+)
final List<NotificationActionData> newNotificationActions = IntStream.of(3, 4)