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…
Reference in New Issue