Added fail-safe

This commit is contained in:
M66B 2022-05-12 11:40:11 +02:00
parent 9cf72bc018
commit 7b78f30037
1 changed files with 4 additions and 3 deletions

View File

@ -322,9 +322,10 @@ public class EmailProvider implements Parcelable {
}
static EmailProvider getProvider(Context context, String id) throws FileNotFoundException {
for (EmailProvider provider : loadProfiles(context))
if (id.equals(provider.id))
return provider;
if (id != null)
for (EmailProvider provider : loadProfiles(context))
if (id.equals(provider.id))
return provider;
throw new FileNotFoundException("provider id=" + id);
}