Merge pull request #14104 from neersighted/hotfix

Hotfix
This commit is contained in:
tkdrg
2015-12-27 19:06:04 -03:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -12,7 +12,7 @@
/datum/jsonHelper/proc/WriteValue(list/json, value)
. = json
if(isnum(value))
json += num2text(value, 20)
json += value // Consider num2text(value, 20) for maximum accuracy.
else if(isnull(value))
json += "null"
else if(istext(value))
+1 -1
View File
@@ -314,7 +314,7 @@
var/list/send_data = get_send_data(data) // Get the data to send.
// Send the new data to the recieveUpdate() Javascript function.
user << output(JSON.stringify(send_data), "[window_id].browser:receiveUpdate")
user << output(url_encode(JSON.stringify(send_data)), "[window_id].browser:receiveUpdate")
/**