be more agressive at deleting corrupt cached files
This commit is contained in:
parent
ff6de731c9
commit
a6057f7fe4
1 changed files with 6 additions and 4 deletions
|
@ -611,12 +611,14 @@ class MediaActivity : SimpleActivity(), MediaOperationsListener {
|
||||||
val newMedia = it
|
val newMedia = it
|
||||||
try {
|
try {
|
||||||
gotMedia(newMedia, false)
|
gotMedia(newMedia, false)
|
||||||
oldMedia.filter { !newMedia.contains(it) }.mapNotNull { it as? Medium }.forEach {
|
|
||||||
if (!getDoesFilePathExist(it.path)) {
|
val newPaths = newMedia.mapNotNull { it as? Medium }.map { it.path }
|
||||||
mediaDB.deleteMediumPath(it.path)
|
oldMedia.mapNotNull { it as? Medium }.filter { !newPaths.contains(it.path) }.forEach {
|
||||||
} else if (mPath == FAVORITES) {
|
if (mPath == FAVORITES && getDoesFilePathExist(it.path)) {
|
||||||
favoritesDB.deleteFavoritePath(it.path)
|
favoritesDB.deleteFavoritePath(it.path)
|
||||||
mediaDB.updateFavorite(it.path, false)
|
mediaDB.updateFavorite(it.path, false)
|
||||||
|
} else {
|
||||||
|
mediaDB.deleteMediumPath(it.path)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
|
|
Loading…
Reference in a new issue