1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-06-21 00:45:18 +00:00

Fix bad check

This commit is contained in:
2020-06-15 10:53:50 +02:00
parent 203a947122
commit 8527ae9c50
2 changed files with 1 additions and 5 deletions

View File

@ -159,7 +159,6 @@ pub fn set_members(conv_id: u64, new_list: &Vec<UserID>, can_delete: bool) -> Re
if new_list.contains(&member) {
continue;
}
remove_member(conv_id, member)?;
}
}