mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-04 16:16:33 +02:00
Prevent null pointer
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user