Properly encode NanoUI JSON...

This is right, not the last fix. The '+' in BYOND scientific notation was becoming a space.
This commit is contained in:
Bjorn Neergaard
2015-12-27 15:49:38 -06:00
parent 54e801776d
commit 65a2c50908
+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")
/**