Fix crash in ViewVideoFragment (#1894)
This commit is contained in:
parent
1f6658f57e
commit
a653c92e63
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ class ViewVideoFragment : ViewMediaFragment() {
|
|||
}
|
||||
|
||||
override fun onToolbarVisibilityChange(visible: Boolean) {
|
||||
if (videoView == null || !userVisibleHint) {
|
||||
if (videoView == null || mediaDescription == null || !userVisibleHint) {
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue