aboutsummaryrefslogtreecommitdiff
path: root/webAO
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2023-01-08 20:38:07 +0100
committerstonedDiscord <Tukz@gmx.de>2023-01-08 20:38:07 +0100
commit46ca0989fc39d43ff5ec639351feab08b374d8e0 (patch)
treef7a66739115a9a8fa4eea0f803bf141ce4fb31ef /webAO
parent3cf9a4e0744dbf14dc1dd17d33d9f58478995b2b (diff)
i say that and forget 2
Diffstat (limited to 'webAO')
-rw-r--r--webAO/encoding.ts4
1 files changed, 2 insertions, 2 deletions
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 '';
}