mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-29 05:15:13 +02:00
Use cache folder for photos
This commit is contained in:
@@ -940,7 +940,7 @@ public class FragmentCompose extends FragmentBase {
|
||||
}
|
||||
|
||||
private void onActionTakePhoto() {
|
||||
File dir = new File(getContext().getFilesDir(), "temporary");
|
||||
File dir = new File(getContext().getCacheDir(), "photo");
|
||||
if (!dir.exists())
|
||||
dir.mkdir();
|
||||
File file = new File(dir, new Date().getTime() + ".jpg");
|
||||
@@ -1857,8 +1857,8 @@ public class FragmentCompose extends FragmentBase {
|
||||
db.attachment().setDownloaded(attachment.id, size);
|
||||
|
||||
if ("eu.faircode.email".equals(uri.getAuthority())) {
|
||||
// content://eu.faircode.email/temporary/nnn.jpg
|
||||
File tmp = new File(context.getFilesDir(), uri.getPath());
|
||||
// content://eu.faircode.email/photo/nnn.jpg
|
||||
File tmp = new File(context.getCacheDir(), uri.getPath());
|
||||
Log.i("Deleting " + tmp);
|
||||
if (!tmp.delete())
|
||||
Log.w("Error deleting " + tmp);
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<files-path
|
||||
name="raw"
|
||||
path="raw" />
|
||||
<files-path
|
||||
name="temporary"
|
||||
path="temporary" />
|
||||
<cache-path
|
||||
name="photo"
|
||||
path="photo" />
|
||||
</paths>
|
||||
|
||||
Reference in New Issue
Block a user