aboutsummaryrefslogtreecommitdiff
path: root/webAO/encoding.ts
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2023-07-16 18:14:34 +0200
committerGitHub <noreply@github.com>2023-07-16 18:14:34 +0200
commit15c2e53af870504e6669b22531bddf1115a1c056 (patch)
tree7adc784005780131330c47c5ffab1bb7b52a2112 /webAO/encoding.ts
parent0451a475318d0d055acc2e7bff37154c77c1b448 (diff)
no more brackets
Diffstat (limited to 'webAO/encoding.ts')
-rw-r--r--webAO/encoding.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/webAO/encoding.ts b/webAO/encoding.ts
index 3477d7b..697e1d0 100644
--- a/webAO/encoding.ts
+++ b/webAO/encoding.ts
@@ -52,5 +52,5 @@ export function decodeChat(estring: string): string {
*/
export function prepChat(msg: string): string {
// TODO: make this less awful
- return unescapeChat(decodeChat(msg));
+ return safeTags(unescapeChat(decodeChat(msg)));
}