catch bug in guessContentType
This commit is contained in:
parent
8d3323e384
commit
dd5101ff5c
|
@ -171,7 +171,12 @@ public class UIHelper {
|
||||||
if (path == null) {
|
if (path == null) {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
final String mime = URLConnection.guessContentTypeFromName(path);
|
final String mime;
|
||||||
|
try {
|
||||||
|
mime = URLConnection.guessContentTypeFromName(path);
|
||||||
|
} catch (final StringIndexOutOfBoundsException ignored) {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
if (mime == null) {
|
if (mime == null) {
|
||||||
return "";
|
return "";
|
||||||
} else if (mime.startsWith("audio/")) {
|
} else if (mime.startsWith("audio/")) {
|
||||||
|
|
Loading…
Reference in a new issue