refactor(sync/v3): Split load_joined_room into smaller functions

This commit is contained in:
Ginger
2025-11-10 12:37:11 -05:00
parent 3f4749a796
commit 07dfc5528d
9 changed files with 625 additions and 343 deletions
+2
View File
@@ -75,6 +75,8 @@ impl DeviceListUpdates {
self.changed.extend(other.changed);
self.left.extend(other.left);
}
fn is_empty(&self) -> bool { self.changed.is_empty() && self.left.is_empty() }
}
impl From<DeviceListUpdates> for DeviceLists {