clear hashParams after moving player with moveTo param

This commit is contained in:
Hanusiak Piotr 2022-02-23 10:14:09 +01:00
parent 658781e02e
commit 9fe4782fbd
2 changed files with 6 additions and 0 deletions

View File

@ -1598,6 +1598,8 @@ ${escapedMessage}
}
})
.catch((reason) => console.warn(reason));
urlManager.clearHashParameter();
} catch (err) {
console.warn(`Cannot proceed with moveTo command:\n\t-> ${err}`);
}

View File

@ -58,6 +58,10 @@ class UrlManager {
return this.getHashParameters()[name];
}
public clearHashParameter(): void {
window.location.hash = "";
}
private getHashParameters(): Record<string, string> {
return window.location.hash
.substring(1)