aboutsummaryrefslogtreecommitdiff
path: root/webAO/encoding.ts
diff options
context:
space:
mode:
Diffstat (limited to 'webAO/encoding.ts')
-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 '';
}