mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-02-21 14:30:35 +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 {
|
fun Context.getMimeTypeFromUri(uri: Uri): String {
|
||||||
var mimetype = uri.path.getMimeTypeFromPath()
|
var mimetype = uri.path.getMimeTypeFromPath()
|
||||||
if (mimetype.isEmpty()) {
|
if (mimetype.isEmpty()) {
|
||||||
|
try {
|
||||||
mimetype = contentResolver.getType(uri)
|
mimetype = contentResolver.getType(uri)
|
||||||
|
} catch (e: IllegalStateException) {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return mimetype
|
return mimetype
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user