forked from mirror/monocles_chat_clean
Photo picker on some androids uses this path
but it's just a temp file so we can't keep it (cherry picked from commit 16b027d82b552353fb88eeaa9c5b64f9ca77e0c4)
This commit is contained in:
parent
a3c851aa44
commit
807fcb948c
1 changed files with 1 additions and 1 deletions
|
@ -222,7 +222,7 @@ public class FileBackend {
|
|||
final String androidDataPath =
|
||||
Environment.getExternalStorageDirectory().getAbsolutePath() + "/Android/data/";
|
||||
final File f = new File(path);
|
||||
return path.startsWith(androidDataPath) || !f.canRead();
|
||||
return path.startsWith(androidDataPath) || path.contains(".transforms/synthetic") || !f.canRead();
|
||||
}
|
||||
|
||||
private static Paint createAntiAliasingPaint() {
|
||||
|
|
Loading…
Reference in a new issue