Change summary
  src/main/java/eu/siacs/conversations/persistance/FileBackend.java | 2 
1 file changed, 1 insertion(+), 1 deletion(-)
  Detailed changes
  
  
    
    @@ -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() {