use swap_remove instead of remove in a few places

`swap_remove` is faster if we don't care about the order (O(1))

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-06-01 00:22:50 -04:00
parent b63937af0b
commit f6fa2a4f65
3 changed files with 4 additions and 4 deletions

View file

@ -247,13 +247,13 @@ fn room_available_servers(
.iter()
.position(|server_name| server_is_ours(server_name))
{
servers.remove(server_index);
servers.swap_remove(server_index);
servers.insert(0, services().globals.server_name().to_owned());
} else if let Some(alias_server_index) = servers
.iter()
.position(|server| server == room_alias.server_name())
{
servers.remove(alias_server_index);
servers.swap_remove(alias_server_index);
servers.insert(0, room_alias.server_name().into());
}