🔊 Trace events from Matrix client callbacks to domain methods

This commit is contained in:
2024-05-21 12:22:04 +02:00
parent b5da0ee992
commit cd6506fb03
11 changed files with 405 additions and 163 deletions

View File

@@ -35,7 +35,7 @@ pub struct Room {
impl Room {
pub fn signal(&self) -> Store {
self.store.borrow().clone()
*self.store.borrow()
}
pub fn from_domain(room: Rc<dyn RoomStoreConsumerInterface>) -> Self {

View File

@@ -25,7 +25,7 @@ pub struct Space {
impl Space {
pub fn signal(&self) -> Store {
self.store.borrow().clone()
*self.store.borrow()
}
pub fn from_domain(space: Rc<dyn SpaceStoreConsumerInterface>) -> Self {