mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-05 08:33:37 +02:00
Ensure exists directory
This commit is contained in:
@@ -8113,9 +8113,7 @@ public class FragmentMessages extends FragmentBase
|
||||
OutputStream out = null;
|
||||
boolean inline = false;
|
||||
|
||||
File tmp = new File(context.getFilesDir(), "encryption");
|
||||
if (!tmp.exists())
|
||||
tmp.mkdir();
|
||||
File tmp = Helper.ensureExists(new File(context.getFilesDir(), "encryption"));
|
||||
File plain = new File(tmp, message.id + ".pgp_out");
|
||||
|
||||
// Find encrypted data
|
||||
|
||||
Reference in New Issue
Block a user