fix: Make joining a channel work with multi-device, fix test_leave_broadcast_multidevice

This commit is contained in:
Hocuri
2025-08-01 23:00:06 +02:00
parent 37f6da1cc9
commit 7e191f6cf9
3 changed files with 47 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
//! # Synchronize items between devices.
use anyhow::Result;
use anyhow::{Context as _, Result};
use mail_builder::mime::MimePart;
use serde::{Deserialize, Serialize};
@@ -274,6 +274,7 @@ impl Context {
Ok(())
}
}
.with_context(|| format!("Sync data {:?}", item.data))
.log_err(self)
.ok();
}