mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 01:36:55 +00:00
Workaround for failing Samsung image decoder
This commit is contained in:
parent
43231cb373
commit
e74bc8772a
1 changed files with 1 additions and 1 deletions
|
@ -685,7 +685,7 @@ class ImageHelper {
|
|||
});
|
||||
} catch (Throwable ex) {
|
||||
Log.i(ex);
|
||||
if (ex instanceof IOException)
|
||||
if (!"android.graphics.ImageDecoder$DecodeException".equals(ex.getClass().getName()))
|
||||
throw ex;
|
||||
/*
|
||||
Samsung:
|
||||
|
|
Loading…
Reference in a new issue