From 46ca0989fc39d43ff5ec639351feab08b374d8e0 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Sun, 8 Jan 2023 20:38:07 +0100 Subject: i say that and forget 2 --- webAO/encoding.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'webAO/encoding.ts') diff --git a/webAO/encoding.ts b/webAO/encoding.ts index 5e53340..3477d7b 100644 --- a/webAO/encoding.ts +++ b/webAO/encoding.ts @@ -31,8 +31,8 @@ export function unescapeChat(estring: string): string { export function safeTags(unsafe: string): string { if (unsafe) { return unsafe - .replace('>', '>') - .replace('<', '<'); + .replaceAll('>', '>') + .replaceAll('<', '<'); } return ''; } -- cgit