This commit is contained in:
Antonio Scandurra 2022-11-17 15:35:03 +01:00
parent 0f4598a243
commit 7dae21cb36
2 changed files with 6 additions and 10 deletions

View file

@ -629,7 +629,7 @@ impl Server {
) -> Result<()> {
let mut contacts_to_update = HashSet::default();
let Some(left_room) = self.app_state.db.leave_room_for_connection(leaving_connection_id).await? else {
let Some(left_room) = self.app_state.db.leave_room(leaving_connection_id).await? else {
return Err(anyhow!("no room to leave"))?;
};
contacts_to_update.insert(leaving_user_id);