Always create mailbox with isSubscribed = true
This commit is contained in:
@@ -111,7 +111,12 @@ class EmailAPI with HandleSetErrorMixin {
|
||||
final setMailboxMethod = SetMailboxMethod(accountId)
|
||||
..addCreate(
|
||||
mailboxRequest.creationId,
|
||||
Mailbox(name: mailboxRequest.newName, parentId: mailboxRequest.parentId));
|
||||
Mailbox(
|
||||
name: mailboxRequest.newName,
|
||||
parentId: mailboxRequest.parentId,
|
||||
isSubscribed: IsSubscribed(mailboxRequest.isSubscribed)
|
||||
)
|
||||
);
|
||||
|
||||
requestBuilder.invocation(setMailboxMethod);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user