mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-22 06:01:12 +00:00
Prevent crash
This commit is contained in:
parent
a488fe67a6
commit
3a1482d333
1 changed files with 3 additions and 1 deletions
|
@ -821,7 +821,9 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
|
||||||
@Override
|
@Override
|
||||||
protected Long onExecute(Context context, Bundle args) {
|
protected Long onExecute(Context context, Bundle args) {
|
||||||
long account = args.getLong("account");
|
long account = args.getLong("account");
|
||||||
return DB.getInstance(context).folder().getFolderByType(account, EntityFolder.INBOX).id;
|
DB db = DB.getInstance(context);
|
||||||
|
EntityFolder inbox = db.folder().getFolderByType(account, EntityFolder.INBOX);
|
||||||
|
return (inbox == null ? -1 : inbox.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue