base: Handle room avatar updates
parent
508bf3b23d
commit
40c53f09ba
|
@ -187,6 +187,10 @@ impl BaseRoomInfo {
|
||||||
self.encryption = Some(encryption.clone());
|
self.encryption = Some(encryption.clone());
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
|
AnyStateEventContent::RoomAvatar(a) => {
|
||||||
|
self.avatar_url = a.url.clone();
|
||||||
|
true
|
||||||
|
}
|
||||||
AnyStateEventContent::RoomName(n) => {
|
AnyStateEventContent::RoomName(n) => {
|
||||||
self.name = n.name().map(|n| n.to_string());
|
self.name = n.name().map(|n| n.to_string());
|
||||||
true
|
true
|
||||||
|
|
Loading…
Reference in New Issue