aboutsummaryrefslogtreecommitdiff
path: root/webAO/encoding.js
diff options
context:
space:
mode:
Diffstat (limited to 'webAO/encoding.js')
-rw-r--r--webAO/encoding.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/webAO/encoding.js b/webAO/encoding.js
index 71ebe53..04a44e7 100644
--- a/webAO/encoding.js
+++ b/webAO/encoding.js
@@ -31,8 +31,8 @@ export function unescapeChat(estring) {
export function safe_tags(unsafe) {
if (unsafe) {
return unsafe
- .replace(/>/g, "&rt;")
- .replace(/</g, "&lt;");
+ .replace(/>/g, '&gt;')
+ .replace(/</g, '&lt;');
} else {
return "";
}