Removing the 'search' parameters from the room URL sent to pusher

This commit is contained in:
David Négrier 2021-07-20 18:29:41 +02:00
parent b336e3b08a
commit 2d55f982d3

View file

@ -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();
}