adding a crashfix at updating actionbar title

This commit is contained in:
tibbi 2017-06-03 08:37:52 +02:00
parent 0c3a4c6253
commit 3001ea4a23

View file

@ -502,9 +502,11 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View
private fun updateActionbarTitle() { private fun updateActionbarTitle() {
runOnUiThread { runOnUiThread {
if (mPos < mMedia.size) {
title = mMedia[mPos].path.getFilenameFromPath() title = mMedia[mPos].path.getFilenameFromPath()
} }
} }
}
private fun getCurrentMedium(): Medium? { private fun getCurrentMedium(): Medium? {
return if (mMedia.isEmpty() || mPos >= mMedia.size) return if (mMedia.isEmpty() || mPos >= mMedia.size)