Fix panic if the host is not there.

This commit is contained in:
Conrad Irwin 2023-10-06 15:18:25 -06:00
parent b58c42cd53
commit 4128e2ffcb

View file

@ -602,6 +602,7 @@ impl Room {
pub fn most_active_project(&self) -> Option<(u64, u64)> { pub fn most_active_project(&self) -> Option<(u64, u64)> {
let mut projects = HashMap::default(); let mut projects = HashMap::default();
let mut hosts = HashMap::default(); let mut hosts = HashMap::default();
for participant in self.remote_participants.values() { for participant in self.remote_participants.values() {
match participant.location { match participant.location {
ParticipantLocation::SharedProject { project_id } => { ParticipantLocation::SharedProject { project_id } => {
@ -619,8 +620,8 @@ impl Room {
pairs.sort_by_key(|(_, count)| *count as i32); pairs.sort_by_key(|(_, count)| *count as i32);
pairs pairs
.first() .iter()
.map(|(project_id, _)| (*project_id, hosts[&project_id])) .find_map(|(project_id, _)| hosts.get(project_id).map(|host| (*project_id, *host)))
} }
async fn handle_room_updated( async fn handle_room_updated(