mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 14:17:03 +02:00
View encrypted message improvements
This commit is contained in:
@@ -125,8 +125,9 @@ public class EntityMessage implements Serializable {
|
||||
File file = getFile(context, id);
|
||||
BufferedWriter out = null;
|
||||
try {
|
||||
this.body = (body == null ? "" : body);
|
||||
out = new BufferedWriter(new FileWriter(file));
|
||||
out.write(body == null ? "" : body);
|
||||
out.write(body);
|
||||
} finally {
|
||||
if (out != null)
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user