diff --git a/server/chat-plugins/helptickets.ts b/server/chat-plugins/helptickets.ts
index 766688deb1..249739ba48 100644
--- a/server/chat-plugins/helptickets.ts
+++ b/server/chat-plugins/helptickets.ts
@@ -1365,7 +1365,7 @@ export const textTickets: { [k: string]: TextTicketInfo } = {
const str = ipPunishments.map(p => (
`${Punishments.punishmentTypes.get(p.type)?.desc || p.type} as ` +
`${p.id}` +
- `${p.reason ? ` (${p.reason})` : ''}`
+ (p.reason ? Utils.html` (${p.reason})` : '')
));
if (str) buf += `Punishments: ${str.join(' | ')}
`;
}