mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +00:00
fix temp file permission denied
// FREEBIE
This commit is contained in:
parent
e67dafe9c8
commit
9fed60628d
@ -124,7 +124,7 @@ public class AttachmentDownloadJob extends MasterSecretJob implements Injectable
|
||||
|
||||
private File createTempFile() throws InvalidPartException {
|
||||
try {
|
||||
File file = File.createTempFile("push-attachment", "tmp");
|
||||
File file = File.createTempFile("push-attachment", "tmp", context.getCacheDir());
|
||||
file.deleteOnExit();
|
||||
|
||||
return file;
|
||||
|
Loading…
Reference in New Issue
Block a user