Convert room id to lowercase
This commit is contained in:
parent
742d658021
commit
a369444b62
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ export function RoomPage() {
|
|||
const params = new URLSearchParams(search);
|
||||
return [params.has("simple"), params.getAll("via")];
|
||||
}, [search]);
|
||||
const roomId = maybeRoomId || hash;
|
||||
const roomId = (maybeRoomId || hash || "").toLowerCase();
|
||||
|
||||
if (loading) {
|
||||
return <LoadingView />;
|
||||
|
|
Loading…
Reference in a new issue