Add a URL param for room ID

And consolidate our URL params logic
This commit is contained in:
Robin Townsend
2022-07-27 16:14:05 -04:00
parent 2a8cb3c4e2
commit cf56b24dda
13 changed files with 166 additions and 67 deletions

View File

@@ -21,14 +21,14 @@ import { usePageTitle } from "../usePageTitle";
export function GroupCallLoader({
client,
roomId,
roomIdOrAlias,
viaServers,
createPtt,
children,
}) {
const { loading, error, groupCall } = useLoadGroupCall(
client,
roomId,
roomIdOrAlias,
viaServers,
createPtt
);