minor style edits
This commit is contained in:
parent
47a10afbb7
commit
37c40b8de7
1 changed files with 4 additions and 5 deletions
|
@ -91,12 +91,11 @@ class VideoFragment : ViewPagerFragment(), SurfaceHolder.Callback, SeekBar.OnSee
|
|||
super.setMenuVisibility(menuVisible)
|
||||
mIsFragmentVisible = menuVisible
|
||||
if (menuVisible) {
|
||||
if (context != null && context.config.autoplayVideos) {
|
||||
if (context?.config?.autoplayVideos == true) {
|
||||
playVideo()
|
||||
}
|
||||
} else {
|
||||
if (mIsPlaying)
|
||||
pauseVideo()
|
||||
} else if (mIsPlaying) {
|
||||
pauseVideo()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -241,7 +240,7 @@ class VideoFragment : ViewPagerFragment(), SurfaceHolder.Callback, SeekBar.OnSee
|
|||
|
||||
override fun onDestroy() {
|
||||
super.onDestroy()
|
||||
if (activity != null && !activity.isChangingConfigurations) {
|
||||
if (activity?.isChangingConfigurations == false) {
|
||||
cleanup()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue