mirror of
https://codeberg.org/monocles/monocles_chat.git
synced 2025-01-17 15:12:22 +01:00
catch illegalargument exception when discovering extension from url
This commit is contained in:
parent
effe52981a
commit
f533e526fb
1 changed files with 6 additions and 1 deletions
|
@ -534,7 +534,12 @@ public class FileBackend {
|
|||
private String getExtensionFromUri(Uri uri) {
|
||||
String[] projection = {MediaStore.MediaColumns.DATA};
|
||||
String filename = null;
|
||||
Cursor cursor = mXmppConnectionService.getContentResolver().query(uri, projection, null, null, null);
|
||||
Cursor cursor;
|
||||
try {
|
||||
cursor = mXmppConnectionService.getContentResolver().query(uri, projection, null, null, null);
|
||||
} catch (IllegalArgumentException e) {
|
||||
cursor = null;
|
||||
}
|
||||
if (cursor != null) {
|
||||
try {
|
||||
if (cursor.moveToFirst()) {
|
||||
|
|
Loading…
Reference in a new issue