catch exceptions thrown at deleting invalid cached files too

This commit is contained in:
tibbi 2019-02-16 16:06:49 +01:00
parent 54312adb75
commit bf4d53f14d

View file

@ -573,9 +573,12 @@ fun Context.getCachedMedia(path: String, getVideosOnly: Boolean = false, getImag
} }
} }
try {
if (mediaToDelete.isNotEmpty()) { if (mediaToDelete.isNotEmpty()) {
mediumDao.deleteMedia(*mediaToDelete.toTypedArray()) mediumDao.deleteMedia(*mediaToDelete.toTypedArray())
} }
} catch (ignored: Exception) {
}
}.start() }.start()
} }