mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 11:01:23 +01:00
Catch parse exception of disposition and filename only
This commit is contained in:
@@ -1035,7 +1035,7 @@ public class MessageHelper {
|
||||
disposition = part.getDisposition();
|
||||
if (disposition != null)
|
||||
disposition = disposition.toLowerCase();
|
||||
} catch (MessagingException ex) {
|
||||
} catch (ParseException ex) {
|
||||
Log.w(ex);
|
||||
parts.warnings.add(Helper.formatThrowable(ex));
|
||||
disposition = null;
|
||||
@@ -1045,9 +1045,13 @@ public class MessageHelper {
|
||||
try {
|
||||
filename = part.getFileName();
|
||||
} catch (MessagingException ex) {
|
||||
Log.w(ex);
|
||||
parts.warnings.add(Helper.formatThrowable(ex));
|
||||
filename = null;
|
||||
if (ex instanceof ParseException ||
|
||||
ex.getCause() instanceof UnsupportedEncodingException) {
|
||||
Log.w(ex);
|
||||
parts.warnings.add(Helper.formatThrowable(ex));
|
||||
filename = null;
|
||||
} else
|
||||
throw ex;
|
||||
}
|
||||
|
||||
//Log.i("Part" +
|
||||
|
||||
Reference in New Issue
Block a user