aboutsummaryrefslogtreecommitdiff
path: root/webAO/encoding.ts
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2023-07-17 03:07:57 +0200
committerstonedDiscord <Tukz@gmx.de>2023-07-17 03:07:57 +0200
commitf6bff005201e8c038d5ccf350df5467e724561b6 (patch)
tree19cbbace1903513dd7940bd6e616d72c66434d7a /webAO/encoding.ts
parent59180c50063a0f32eec572b5b1e8adb82f59e013 (diff)
parent15c2e53af870504e6669b22531bddf1115a1c056 (diff)
Merge branch 'master' of https://github.com/AttorneyOnline/webAO
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)));
}