mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2025-02-11 00:20:07 +00:00
Fix crash on fast forward
This commit is contained in:
parent
10e95bf1b1
commit
06fb89fae2
@ -148,7 +148,10 @@ public final class NotificationUtil {
|
|||||||
|
|
||||||
@SuppressLint("RestrictedApi")
|
@SuppressLint("RestrictedApi")
|
||||||
boolean shouldUpdateBufferingSlot() {
|
boolean shouldUpdateBufferingSlot() {
|
||||||
if (notificationBuilder.mActions.size() < 3) {
|
if (notificationBuilder == null) {
|
||||||
|
// if there is no notification active, there is no point in updating it
|
||||||
|
return false;
|
||||||
|
} else if (notificationBuilder.mActions.size() < 3) {
|
||||||
// this should never happen, but let's make sure notification actions are populated
|
// this should never happen, but let's make sure notification actions are populated
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user