catch some more exceptions at loading folders
This commit is contained in:
parent
8290f43282
commit
9d2026e639
1 changed files with 8 additions and 8 deletions
|
@ -899,16 +899,16 @@ class MainActivity : SimpleActivity(), DirectoryOperationsListener {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (ignored: Exception) {
|
|
||||||
}
|
|
||||||
|
|
||||||
if (dirPathsToRemove.isNotEmpty()) {
|
if (dirPathsToRemove.isNotEmpty()) {
|
||||||
val dirsToRemove = dirs.filter { dirPathsToRemove.contains(it.path) }
|
val dirsToRemove = dirs.filter { dirPathsToRemove.contains(it.path) }
|
||||||
dirsToRemove.forEach {
|
dirsToRemove.forEach {
|
||||||
mDirectoryDao.deleteDirPath(it.path)
|
mDirectoryDao.deleteDirPath(it.path)
|
||||||
|
}
|
||||||
|
dirs.removeAll(dirsToRemove)
|
||||||
|
setupAdapter(dirs)
|
||||||
}
|
}
|
||||||
dirs.removeAll(dirsToRemove)
|
} catch (ignored: Exception) {
|
||||||
setupAdapter(dirs)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
val foldersToScan = mediaFetcher.getFoldersToScan()
|
val foldersToScan = mediaFetcher.getFoldersToScan()
|
||||||
|
|
Loading…
Reference in a new issue