diff --git a/react/features/base/connection/actions.native.js b/react/features/base/connection/actions.native.js index 2ad1d6686..329b2e6d4 100644 --- a/react/features/base/connection/actions.native.js +++ b/react/features/base/connection/actions.native.js @@ -28,7 +28,14 @@ export function connect() { connectionOptions.token, { ...connectionOptions, - bosh: connectionOptions.bosh + (room ? `?room=${room}` : '') + bosh: + connectionOptions.bosh + + // XXX The Jitsi Meet deployments require the room + // argument to be in lower case at the time of this + // writing but, unfortunately, they do not ignore + // case themselves. + + (room ? `?room=${room.toLowerCase()}` : '') }); connection.addEventListener(