diff options
| author | stonedDiscord <Tukz@gmx.de> | 2023-01-08 20:38:07 +0100 |
|---|---|---|
| committer | stonedDiscord <Tukz@gmx.de> | 2023-01-08 20:38:07 +0100 |
| commit | 46ca0989fc39d43ff5ec639351feab08b374d8e0 (patch) | |
| tree | f7a66739115a9a8fa4eea0f803bf141ce4fb31ef /webAO/encoding.ts | |
| parent | 3cf9a4e0744dbf14dc1dd17d33d9f58478995b2b (diff) | |
i say that and forget 2
Diffstat (limited to 'webAO/encoding.ts')
| -rw-r--r-- | webAO/encoding.ts | 4 |
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 ''; } |
