hotfix: 404 for mixed case usernames

This commit is contained in:
zomars 2022-12-02 13:32:45 -07:00
parent d3e4d26fa5
commit 2c7fcbcf51

View File

@ -164,7 +164,7 @@ export const getUsernameList = (users: string | string[] | undefined): string[]
const allUsers = users.map((user) =>
user
.toLowerCase()
//.toLowerCase() // This was causing 404s for mixed-case usernames
.replace(/( |%20)/g, "+")
.split("+")
);