Fixed setting unified inbox on quick setup

This commit is contained in:
M66B 2019-02-09 09:57:54 +00:00
parent af5ae44c82
commit 9c7ecdc25e
1 changed files with 3 additions and 1 deletions

View File

@ -233,8 +233,10 @@ public class FragmentQuickSetup extends FragmentBase {
folder.keep_days = EntityFolder.DEFAULT_KEEP;
folders.add(folder);
if (EntityFolder.INBOX.equals(type))
if (EntityFolder.INBOX.equals(type)) {
folder.unified = true;
inbox = true;
}
if (EntityFolder.DRAFTS.equals(type))
drafts = true;
}