1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-06-16 10:19:59 +00:00

Merge pull request #8661 from Stypox/player-refactor-npe

Fix random NullPointerException when adding video player view
This commit is contained in:
Stypox 2022-08-02 11:09:50 +02:00 committed by GitHub
commit 3420faab08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1312,9 +1312,11 @@ public final class VideoDetailFragment
// Prevent from re-adding a view multiple times
new Handler(Looper.getMainLooper()).post(() ->
player.UIs().get(MainPlayerUi.class).ifPresent(playerUi -> {
playerUi.removeViewFromParent();
binding.playerPlaceholder.addView(playerUi.getBinding().getRoot());
playerUi.setupVideoSurfaceIfNeeded();
if (binding != null) {
playerUi.removeViewFromParent();
binding.playerPlaceholder.addView(playerUi.getBinding().getRoot());
playerUi.setupVideoSurfaceIfNeeded();
}
}));
}