Discord: fix user links

This commit is contained in:
Harvey Tindall 2021-05-23 14:32:35 +01:00
parent 7d698d63e3
commit 168b217553
Signed by: hrfee
GPG Key ID: BBC65952848FB1A2
2 changed files with 3 additions and 0 deletions

View File

@ -280,6 +280,7 @@ class user implements User {
get discord_id(): string { return this._discordID; }
set discord_id(id: string) {
if (!window.discordEnabled || this._discordUsername == "") return;
this._discordID = id;
const link = this._discord.getElementsByClassName("discord-link")[0] as HTMLAnchorElement;
link.href = `https://discord.com/users/${id}`;
@ -466,6 +467,7 @@ class user implements User {
this.notify_telegram = user.notify_telegram;
this.notify_discord = user.notify_discord;
this.notify_email = user.notify_email;
this.discord_id = user.discord_id;
}
asElement = (): HTMLTableRowElement => { return this._row; }

View File

@ -1,4 +1,5 @@
import { _get, _post, _delete, toClipboard, toggleLoader, toDateString } from "../modules/common.js";
import { newDiscordSearch } from "../modules/discord.js";
class DOMInvite implements Invite {
updateNotify = (checkbox: HTMLInputElement) => {