mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-24 17:28:40 +00:00
Fix panic if the host is not there.
This commit is contained in:
parent
b58c42cd53
commit
4128e2ffcb
1 changed files with 3 additions and 2 deletions
|
@ -602,6 +602,7 @@ impl Room {
|
|||
pub fn most_active_project(&self) -> Option<(u64, u64)> {
|
||||
let mut projects = HashMap::default();
|
||||
let mut hosts = HashMap::default();
|
||||
|
||||
for participant in self.remote_participants.values() {
|
||||
match participant.location {
|
||||
ParticipantLocation::SharedProject { project_id } => {
|
||||
|
@ -619,8 +620,8 @@ impl Room {
|
|||
pairs.sort_by_key(|(_, count)| *count as i32);
|
||||
|
||||
pairs
|
||||
.first()
|
||||
.map(|(project_id, _)| (*project_id, hosts[&project_id]))
|
||||
.iter()
|
||||
.find_map(|(project_id, _)| hosts.get(project_id).map(|host| (*project_id, *host)))
|
||||
}
|
||||
|
||||
async fn handle_room_updated(
|
||||
|
|
Loading…
Reference in a new issue