mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 13:47:05 +02:00
Wrap throwables
This commit is contained in:
@@ -5567,12 +5567,12 @@ public class MessageHelper {
|
||||
getStructure(multipart.getBodyPart(i), ssb, level + 1, textColorLink);
|
||||
} catch (Throwable ex) {
|
||||
Log.w(ex);
|
||||
ssb.append(ex.toString()).append('\n');
|
||||
ssb.append(new ThrowableWrapper(ex).toSafeString()).append('\n');
|
||||
}
|
||||
}
|
||||
} catch (Throwable ex) {
|
||||
Log.w(ex);
|
||||
ssb.append(ex.toString()).append('\n');
|
||||
ssb.append(new ThrowableWrapper(ex).toSafeString()).append('\n');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user