mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2024-12-01 01:43:38 +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
|
// 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
|
// Build batch
|
||||||
let mut changes = match self.jmap.begin_changes(account_id).await {
|
let mut changes = match self.jmap.begin_changes(account_id).await {
|
||||||
Ok(changes) => changes,
|
Ok(changes) => changes,
|
||||||
|
|
Loading…
Reference in a new issue