Lowercase room name in url path

auto_join_3.3
Mészáros Mihály 2020-04-16 22:32:34 +02:00
parent 6cb8e1d158
commit da429cf1b5
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ const App = (props) =>
room room
} = props; } = props;
const { id } = useParams(); const id = useParams().id.toLowerCase();
useEffect(() => useEffect(() =>
{ {