fix invite links with URL base
This commit is contained in:
@@ -45,7 +45,7 @@ export class DOMInvite implements Invite {
|
|||||||
for (let split of ["#", "?"]) {
|
for (let split of ["#", "?"]) {
|
||||||
codeLink = codeLink.split(split)[0];
|
codeLink = codeLink.split(split)[0];
|
||||||
}
|
}
|
||||||
this._codeLink = codeLink + window.URLBase + "invite/" + code;
|
this._codeLink = codeLink + "invite/" + code;
|
||||||
const linkEl = this._codeArea.querySelector("a") as HTMLAnchorElement;
|
const linkEl = this._codeArea.querySelector("a") as HTMLAnchorElement;
|
||||||
if (this.label == "") {
|
if (this.label == "") {
|
||||||
linkEl.textContent = code.replace(/-/g, '-');
|
linkEl.textContent = code.replace(/-/g, '-');
|
||||||
|
|||||||
Reference in New Issue
Block a user