diff options
| author | stonedDiscord <Tukz@gmx.de> | 2023-07-16 18:14:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-16 18:14:34 +0200 |
| commit | 15c2e53af870504e6669b22531bddf1115a1c056 (patch) | |
| tree | 7adc784005780131330c47c5ffab1bb7b52a2112 /webAO | |
| parent | 0451a475318d0d055acc2e7bff37154c77c1b448 (diff) | |
no more brackets
Diffstat (limited to 'webAO')
| -rw-r--r-- | webAO/encoding.ts | 2 |
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))); } |
