diff --git a/CHANGELOG.md b/CHANGELOG.md index d4e7db82..18f26012 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## Version develop +### Bugfix +- Moving a discussion over a user will now add this user to the discussion +- Being in a silent zone new forces mediaConstraints to false (#1508) +- Fixes for the emote menu (#1501) + ## Version 1.5.0 ### Updates - Added support for login with OpenID Connect diff --git a/front/src/Connexion/Room.ts b/front/src/Connexion/Room.ts index 06706f6a..9161b7d8 100644 --- a/front/src/Connexion/Room.ts +++ b/front/src/Connexion/Room.ts @@ -133,25 +133,6 @@ export class Room { } } - /** - * @deprecated - */ - private parsePrivateUrl(url: string): { organizationSlug: string; worldSlug: string; roomSlug?: string } { - const regex = /@\/([^/]+)\/([^/]+)(?:\/([^/]*))?/gm; - const match = regex.exec(url); - if (!match) { - throw new Error("Invalid URL " + url); - } - const results: { organizationSlug: string; worldSlug: string; roomSlug?: string } = { - organizationSlug: match[1], - worldSlug: match[2], - }; - if (match[3] !== undefined) { - results.roomSlug = match[3]; - } - return results; - } - public isDisconnected(): boolean { const alone = this._search.get("alone"); if (alone && alone !== "0" && alone.toLowerCase() !== "false") {