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 { static EmailProvider getProvider(Context context, String id) throws FileNotFoundException {
for (EmailProvider provider : loadProfiles(context)) if (id != null)
if (id.equals(provider.id)) for (EmailProvider provider : loadProfiles(context))
return provider; if (id.equals(provider.id))
return provider;
throw new FileNotFoundException("provider id=" + id); throw new FileNotFoundException("provider id=" + id);
} }