Prevent null pointer

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

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

Loading…
Cancel
Save