mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-22 20:48:00 +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) {
|
||||
var uri = Uri.fromFile(file)
|
||||
if (!setAsWallpaper(uri, file)) {
|
||||
uri = getFileContentUri(file)
|
||||
setAsWallpaper(uri, file, false)
|
||||
try {
|
||||
var uri = Uri.fromFile(file)
|
||||
if (!setAsWallpaper(uri, file)) {
|
||||
uri = getFileContentUri(file)
|
||||
setAsWallpaper(uri, file, false)
|
||||
}
|
||||
} catch (e: Exception) {
|
||||
toast(R.string.unknown_error_occurred)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue