Lowercase room name in url path

master
Mészáros Mihály 2020-04-16 22:32:34 +02:00
parent efc721ded7
commit effdd3005b
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(() =>
{ {