This commit is contained in:
M66B
2023-12-21 18:50:20 +01:00
parent 4f25a69998
commit 84e7ecbf94

View File

@@ -186,7 +186,7 @@ public class EntityAttachment {
boolean external_storage = prefs.getBoolean("external_storage", false);
if (external_storage) {
File dir = Helper.getExternalFilesDir(context);
File dir = new File(Helper.getExternalFilesDir(context), "attachments");
dir.mkdirs();
return dir;
}