Prevent crash

This commit is contained in:
M66B 2019-01-04 08:59:14 +01:00
parent a488fe67a6
commit 3a1482d333
1 changed files with 3 additions and 1 deletions

View File

@ -821,7 +821,9 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
@Override
protected Long onExecute(Context context, Bundle args) {
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