Fixes the PDA Messenger not decoding HTML tags (#15236)

* Messenger Fix V1

Co-Authored-By: moxian <moxian@users.noreply.github.com>

* Messenger Fix V1.1

Now with 100% less javascript!

Co-authored-by: moxian <moxian@users.noreply.github.com>
This commit is contained in:
SabreML
2021-01-21 21:03:25 +00:00
committed by GitHub
co-authored by moxian
parent 0783f87ce2
commit 2c2bd88cd7
4 changed files with 8 additions and 16 deletions
+1 -1
View File
@@ -55,7 +55,7 @@
note = "Congratulations, your station has chosen the [pda.model_name]!"
/datum/data/pda/app/notekeeper/update_ui(mob/user as mob, list/data)
data["note"] = note // current pda notes
data["note"] = html_decode(note) // current pda notes
/datum/data/pda/app/notekeeper/ui_act(action, params)
if(..())