mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-11-04 17:16:24 +00:00
Fix random NullPointerException when adding video player view
This commit is contained in:
parent
8187a3bc04
commit
0e8cc72b13
@ -1305,7 +1305,7 @@ public final class VideoDetailFragment
|
||||
}
|
||||
|
||||
private void addVideoPlayerView() {
|
||||
if (!isPlayerAvailable()) {
|
||||
if (!isPlayerAvailable() || getView() == null) {
|
||||
return;
|
||||
}
|
||||
setHeightThumbnail();
|
||||
|
Loading…
Reference in New Issue
Block a user