Fix username block list.

This commit is contained in:
Paul
2021-07-14 11:21:53 +01:00
parent 1872432725
commit 27a9fc3e21
4 changed files with 5 additions and 5 deletions

View File

@@ -159,7 +159,7 @@ impl User {
/// Utility function for checking claimed usernames.
pub async fn is_username_taken(username: &str) -> Result<bool> {
if username.to_lowercase() == "revolt" && username.to_lowercase() == "admin" {
if username.to_lowercase() == "revolt" || username.to_lowercase() == "admin" {
return Ok(true);
}