From d2a537ac3ef871103da8db78d19ee577a7dc062e Mon Sep 17 00:00:00 2001 From: Distrib Date: Wed, 18 Sep 2024 03:44:49 +0200 Subject: [PATCH] Helptickets: Add link to reported user's profile (#10550) --- server/chat-plugins/helptickets.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/chat-plugins/helptickets.ts b/server/chat-plugins/helptickets.ts index d304f58160..913051a769 100644 --- a/server/chat-plugins/helptickets.ts +++ b/server/chat-plugins/helptickets.ts @@ -1159,7 +1159,7 @@ export const textTickets: {[k: string]: TextTicketInfo} = { ]; const tar = toID(ticket.text[0]); // should always be the reported userid const name = Utils.escapeHTML(Users.getExact(tar)?.name || tar); - buf += `
Reported user: ${name} `; + buf += `
Reported user: ${name} `; buf += `
`; buf += `
`; buf += `Punish ${name} (reported user)`;