mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +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 {
|
private File createTempFile() throws InvalidPartException {
|
||||||
try {
|
try {
|
||||||
File file = File.createTempFile("push-attachment", "tmp");
|
File file = File.createTempFile("push-attachment", "tmp", context.getCacheDir());
|
||||||
file.deleteOnExit();
|
file.deleteOnExit();
|
||||||
|
|
||||||
return file;
|
return file;
|
||||||
|
Loading…
Reference in New Issue
Block a user