mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 14:17:03 +02:00
Fixed cleanup external drafts
This commit is contained in:
@@ -150,14 +150,7 @@ public class EntityAttachment {
|
||||
}
|
||||
|
||||
static File getFile(Context context, long id, String name) {
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
boolean external_storage = prefs.getBoolean("external_storage", false);
|
||||
|
||||
File root = (external_storage
|
||||
? context.getExternalFilesDir(null)
|
||||
: context.getFilesDir());
|
||||
|
||||
File dir = new File(root, "attachments");
|
||||
File dir = new File(getRoot(context), "attachments");
|
||||
if (!dir.exists())
|
||||
dir.mkdir();
|
||||
String filename = Long.toString(id);
|
||||
@@ -168,6 +161,16 @@ public class EntityAttachment {
|
||||
return new File(dir, filename);
|
||||
}
|
||||
|
||||
static File getRoot(Context context) {
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
boolean external_storage = prefs.getBoolean("external_storage", false);
|
||||
|
||||
File root = (external_storage
|
||||
? context.getExternalFilesDir(null)
|
||||
: context.getFilesDir());
|
||||
return root;
|
||||
}
|
||||
|
||||
static void copy(Context context, long oldid, long newid) {
|
||||
DB db = DB.getInstance(context);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user