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