mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-02-18 21:10:35 +01:00
add a null check at getting current path
This commit is contained in:
parent
7b2af9faeb
commit
1567ca05fb
@ -1104,7 +1104,7 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View
|
||||
|
||||
private fun getCurrentMedia() = if (mAreSlideShowMediaVisible) mSlideshowMedia else mMediaFiles
|
||||
|
||||
private fun getCurrentPath() = getCurrentMedium()!!.path
|
||||
private fun getCurrentPath() = getCurrentMedium()?.path ?: ""
|
||||
|
||||
private fun getCurrentFile() = File(getCurrentPath())
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user