1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2024-10-18 09:00:11 +00:00

Compare commits

..

1 Commits

Author SHA1 Message Date
jeppevinkel
0ce4896302
Merge 6052329c0b into a7529c7498 2024-07-10 09:07:34 +02:00

View File

@ -266,20 +266,12 @@ class ReferralCard {
get code(): string { return this._code; } get code(): string { return this._code; }
set code(c: string) { set code(c: string) {
this._code = c; this._code = c;
let url = window.location.href;
let u = new URL(window.location.href); let pathArray = url.split('/');
let path = u.pathname; url = `${pathArray[0]}//${pathArray[2]}/`;
for (let split of ["account", "my"]) { if (url.slice(-1) != "/") { url += "/"; }
path = path.split(split)[0]; url = url + "invite/" + this._code;
} this._url = url;
if (path.slice(-1) != "/") { path += "/"; }
path = path + "invite/" + this._code;
u.pathname = path;
u.hash = "";
u.search = "";
this._url = u.toString();
} }
get remaining_uses(): number { return this._remainingUses; } get remaining_uses(): number { return this._remainingUses; }