Merge pull request #1300 from thecodingmachine/remove_search_args_from_room_url
Removing the 'search' parameters from the room URL sent to pusher
This commit is contained in:
commit
78524e64bd
1 changed files with 1 additions and 0 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue