Never set a room on active call if it is offline

This commit is contained in:
Antonio Scandurra 2022-10-07 12:00:23 +02:00
parent 669406d5af
commit e82320cde8

View file

@ -232,6 +232,9 @@ impl ActiveCall {
fn set_room(&mut self, room: Option<ModelHandle<Room>>, cx: &mut ModelContext<Self>) { fn set_room(&mut self, room: Option<ModelHandle<Room>>, cx: &mut ModelContext<Self>) {
if room.as_ref() != self.room.as_ref().map(|room| &room.0) { if room.as_ref() != self.room.as_ref().map(|room| &room.0) {
if let Some(room) = room { if let Some(room) = room {
if room.read(cx).status().is_offline() {
self.room = None;
} else {
let subscriptions = vec![ let subscriptions = vec![
cx.observe(&room, |this, room, cx| { cx.observe(&room, |this, room, cx| {
if room.read(cx).status().is_offline() { if room.read(cx).status().is_offline() {
@ -243,6 +246,7 @@ impl ActiveCall {
cx.subscribe(&room, |_, _, event, cx| cx.emit(event.clone())), cx.subscribe(&room, |_, _, event, cx| cx.emit(event.clone())),
]; ];
self.room = Some((room, subscriptions)); self.room = Some((room, subscriptions));
}
} else { } else {
self.room = None; self.room = None;
} }