mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-26 14:37:59 +01:00
wrap the wallpaper setter in a try-catch block
This commit is contained in:
parent
25b31eb5a7
commit
277ded39ab
1 changed files with 8 additions and 4 deletions
|
@ -72,10 +72,14 @@ fun Activity.shareMedia(media: List<Medium>) {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Activity.trySetAsWallpaper(file: File) {
|
fun Activity.trySetAsWallpaper(file: File) {
|
||||||
var uri = Uri.fromFile(file)
|
try {
|
||||||
if (!setAsWallpaper(uri, file)) {
|
var uri = Uri.fromFile(file)
|
||||||
uri = getFileContentUri(file)
|
if (!setAsWallpaper(uri, file)) {
|
||||||
setAsWallpaper(uri, file, false)
|
uri = getFileContentUri(file)
|
||||||
|
setAsWallpaper(uri, file, false)
|
||||||
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
toast(R.string.unknown_error_occurred)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue