Prevent null pointer

pull/201/head
M66B 4 years ago
parent 63e2bfbf1d
commit aa80f829f8

@ -459,7 +459,10 @@ public class ContactInfo {
} }
if (info.bitmap == null) if (info.bitmap == null)
throw ex; if (ex == null)
throw new FileNotFoundException();
else
throw ex;
// Add to cache // Add to cache
File output = new File(dir, File output = new File(dir,

Loading…
Cancel
Save