TF-2302 Fix show folder

Signed-off-by: dab246 <tdvu@linagora.com>
(cherry picked from commit 221f26feefea1e42ecad72dc0eb2fe9471d683a9)
This commit is contained in:
dab246
2023-11-07 19:08:52 +07:00
committed by Dat Vu
parent 5cb611b649
commit 780751034a
3 changed files with 45 additions and 11 deletions
@@ -1117,7 +1117,10 @@ class MailboxController extends BaseMailboxController with MailboxActionHandlerM
}
}
_refreshMailboxChanges(currentMailboxState: success.currentMailboxState);
_refreshMailboxChanges(
currentMailboxState: success.currentMailboxState,
properties: MailboxConstants.propertiesDefault
);
}
void _handleUnsubscribeMultipleMailboxAllSuccess(SubscribeMultipleMailboxAllSuccess success) {
@@ -1133,7 +1136,10 @@ class MailboxController extends BaseMailboxController with MailboxActionHandlerM
}
}
_refreshMailboxChanges(currentMailboxState: success.currentMailboxState);
_refreshMailboxChanges(
currentMailboxState: success.currentMailboxState,
properties: MailboxConstants.propertiesDefault
);
}
void _handleUnsubscribeMultipleMailboxHasSomeSuccess(SubscribeMultipleMailboxHasSomeSuccess success) {
@@ -1149,7 +1155,10 @@ class MailboxController extends BaseMailboxController with MailboxActionHandlerM
}
}
_refreshMailboxChanges(currentMailboxState: success.currentMailboxState);
_refreshMailboxChanges(
currentMailboxState: success.currentMailboxState,
properties: MailboxConstants.propertiesDefault
);
}
void _closeEmailViewIfMailboxDisabledOrNotExist(List<MailboxId> mailboxIdsDisabled) {