mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2024-11-28 09:07:32 +00:00
Subscribing shared mailboxes doesn't work (fixes #251)
This commit is contained in:
parent
56ca136aa6
commit
be8f23296d
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ impl<T: SessionStream> SessionData<T> {
|
|||
};
|
||||
|
||||
// Subscribe/unsubscribe to mailbox
|
||||
if let Some(value) = mailbox.inner.mailbox_subscribe(account_id, subscribe) {
|
||||
if let Some(value) = mailbox.inner.mailbox_subscribe(self.account_id, subscribe) {
|
||||
// Build batch
|
||||
let mut changes = match self.jmap.begin_changes(account_id).await {
|
||||
Ok(changes) => changes,
|
||||
|
|
Loading…
Reference in a new issue