From 2d55f982d3f1128f3669938938d97e56e46f7337 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=A9grier?= Date: Tue, 20 Jul 2021 18:29:41 +0200 Subject: [PATCH] Removing the 'search' parameters from the room URL sent to pusher --- front/src/Connexion/Room.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/front/src/Connexion/Room.ts b/front/src/Connexion/Room.ts index 57d52766..2053911d 100644 --- a/front/src/Connexion/Room.ts +++ b/front/src/Connexion/Room.ts @@ -169,6 +169,7 @@ export class Room { */ public get key(): string { const newUrl = new URL(this.roomUrl.toString()); + newUrl.search = ""; newUrl.hash = ""; return newUrl.toString(); }