diff options
| author | sD <stoned@derpymail.org> | 2019-12-22 16:52:09 +0100 |
|---|---|---|
| committer | sD <stoned@derpymail.org> | 2019-12-22 16:52:09 +0100 |
| commit | 70a52b5551a72bfe642006c95368be3c694737c7 (patch) | |
| tree | 70c985ecf5578981a6fc385112ef202fe0034e79 | |
| parent | a8c1ab9682f543e81245c68ba93636025ad87c18 (diff) | |
fix spaces in pairing list
| -rw-r--r-- | webAO/client.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webAO/client.js b/webAO/client.js index af480ea..846259e 100644 --- a/webAO/client.js +++ b/webAO/client.js @@ -572,9 +572,9 @@ class Client extends EventEmitter { } const mute_select = document.getElementById("mute_select"); - mute_select.add(new Option(escape(chargs[0]), charid)); + mute_select.add(new Option(safe_tags(chargs[0]), charid)); const pair_select = document.getElementById("pair_select"); - pair_select.add(new Option(escape(chargs[0]), charid)); + pair_select.add(new Option(safe_tags(chargs[0]), charid)); // sometimes ini files lack important settings const default_options = { |
