catch errors thrown at updating a files favorite state
This commit is contained in:
parent
2f15893cda
commit
d9194176ee
1 changed files with 6 additions and 2 deletions
|
@ -801,7 +801,11 @@ fun Context.getFavoriteFromPath(path: String) = Favorite(null, path, path.getFil
|
|||
|
||||
fun Context.updateFavorite(path: String, isFavorite: Boolean) {
|
||||
if (isFavorite) {
|
||||
favoritesDB.insert(getFavoriteFromPath(path))
|
||||
try {
|
||||
favoritesDB.insert(getFavoriteFromPath(path))
|
||||
} catch (e: Exception) {
|
||||
toast(R.string.unknown_error_occurred)
|
||||
}
|
||||
} else {
|
||||
favoritesDB.deleteFavoritePath(path)
|
||||
}
|
||||
|
@ -812,7 +816,7 @@ fun Context.getUpdatedDeletedMedia(): ArrayList<Medium> {
|
|||
val media = try {
|
||||
mediaDB.getDeletedMedia() as ArrayList<Medium>
|
||||
} catch (ignored: Exception) {
|
||||
ArrayList<Medium>()
|
||||
ArrayList()
|
||||
}
|
||||
|
||||
media.forEach {
|
||||
|
|
Loading…
Reference in a new issue