mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-01 10:35:15 +01:00
Handle message file not readable (found)
This commit is contained in:
@@ -746,7 +746,13 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
protected Spanned onLoad(final Context context, final Bundle args) throws Throwable {
|
||||
TupleMessageEx message = (TupleMessageEx) args.getSerializable("message");
|
||||
if (body == null)
|
||||
body = message.read(context);
|
||||
try {
|
||||
body = message.read(context);
|
||||
} catch (IOException ex) {
|
||||
Log.e(Helper.TAG, ex + "\n" + Log.getStackTraceString(ex));
|
||||
body = ex.toString();
|
||||
DB.getInstance(context).message().setMessageContent(message.id, false, null);
|
||||
}
|
||||
return decodeHtml(message, body);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user