oops dedup only works on consecutive elements

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-01-14 00:03:59 -05:00 committed by June
parent 52884abff6
commit ad792f4565
1 changed files with 8 additions and 6 deletions

View File

@ -103,9 +103,6 @@ pub(crate) async fn get_alias_helper(
servers.push(extra_servers);
}
// shuffle list of servers randomly
servers.shuffle(&mut rand::thread_rng());
// insert our server as the very first choice if in list
if let Some(server_index) = servers
.clone()
@ -116,8 +113,12 @@ pub(crate) async fn get_alias_helper(
servers.insert(0, services().globals.server_name().to_owned());
}
servers.sort_unstable();
servers.dedup();
// shuffle list of servers randomly after sort and dedupe
servers.shuffle(&mut rand::thread_rng());
return Ok(get_alias::v3::Response::new(room_id, servers));
}
@ -188,9 +189,6 @@ pub(crate) async fn get_alias_helper(
servers.push(extra_servers);
}
// shuffle list of servers randomly
servers.shuffle(&mut rand::thread_rng());
// insert our server as the very first choice if in list
if let Some(server_index) = servers
.clone()
@ -201,7 +199,11 @@ pub(crate) async fn get_alias_helper(
servers.insert(0, services().globals.server_name().to_owned());
}
servers.sort_unstable();
servers.dedup();
// shuffle list of servers randomly after sort and dedupe
servers.shuffle(&mut rand::thread_rng());
Ok(get_alias::v3::Response::new(room_id, servers))
}