1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2024-06-18 07:27:49 +02:00

Fix invite link when non-default language selected

This commit is contained in:
Harvey Tindall 2021-01-17 12:36:16 +00:00
parent e68dccbc17
commit 72a7759ca5
Signed by: hrfee
GPG Key ID: BBC65952848FB1A2

View File

@ -30,7 +30,11 @@ export class DOMInvite implements Invite {
get code(): string { return this._code; }
set code(code: string) {
this._code = code;
this._codeLink = window.location.href.split("#")[0] + "invite/" + code;
let codeLink = window.location.href;
for (let split of ["#", "?"]) {
codeLink = codeLink.split(split)[0];
}
this._codeLink = codeLink + "invite/" + code;
const linkEl = this._codeArea.querySelector("a") as HTMLAnchorElement;
linkEl.textContent = code.replace(/-/g, '-');
linkEl.href = this._codeLink;