mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-02-16 20:10:37 +01:00
catching another exception at deleting dir paths
This commit is contained in:
parent
70ef61e0ac
commit
9433184d6b
@ -632,7 +632,10 @@ class MediaActivity : SimpleActivity(), MediaOperationsListener {
|
||||
|
||||
private fun deleteDBDirectory() {
|
||||
ensureBackgroundThread {
|
||||
mDirectoryDao.deleteDirPath(mPath)
|
||||
try {
|
||||
mDirectoryDao.deleteDirPath(mPath)
|
||||
} catch (ignored: Exception) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user