mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-02-17 12:30:36 +01:00
catch exceptions thrown at getting mimetype from uri
This commit is contained in:
parent
70afd655ae
commit
de1c418f78
@ -82,7 +82,10 @@ fun Context.getSortedDirectories(source: ArrayList<Directory>): ArrayList<Direct
|
||||
fun Context.getMimeTypeFromUri(uri: Uri): String {
|
||||
var mimetype = uri.path.getMimeTypeFromPath()
|
||||
if (mimetype.isEmpty()) {
|
||||
mimetype = contentResolver.getType(uri)
|
||||
try {
|
||||
mimetype = contentResolver.getType(uri)
|
||||
} catch (e: IllegalStateException) {
|
||||
}
|
||||
}
|
||||
return mimetype
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user