From a369444b62bada3a2a5dab0f18fe4672fa3ba321 Mon Sep 17 00:00:00 2001 From: Robert Long Date: Mon, 14 Feb 2022 12:35:07 -0800 Subject: [PATCH] Convert room id to lowercase --- src/room/RoomPage.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/room/RoomPage.jsx b/src/room/RoomPage.jsx index 30bdc4c..f421e68 100644 --- a/src/room/RoomPage.jsx +++ b/src/room/RoomPage.jsx @@ -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 ;