fix another crash in ViewVideoFragment (#1926)
This commit is contained in:
parent
67225dd4c0
commit
67df1a7065
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ class ViewVideoFragment : ViewMediaFragment() {
|
||||||
mediaDescription.animate().alpha(alpha)
|
mediaDescription.animate().alpha(alpha)
|
||||||
.setListener(object : AnimatorListenerAdapter() {
|
.setListener(object : AnimatorListenerAdapter() {
|
||||||
override fun onAnimationEnd(animation: Animator) {
|
override fun onAnimationEnd(animation: Animator) {
|
||||||
mediaDescription.visible(isDescriptionVisible)
|
mediaDescription?.visible(isDescriptionVisible)
|
||||||
animation.removeListener(this)
|
animation.removeListener(this)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue