mirror of
https://codeberg.org/monocles/monocles_chat.git
synced 2025-01-15 22:22:22 +01:00
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
7323199d11
commit
1f84056c88
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