summaryrefslogtreecommitdiff
path: root/share/server/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'share/server/util.js')
-rw-r--r--share/server/util.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/server/util.js b/share/server/util.js
index 13b8a779..28c02fbc 100644
--- a/share/server/util.js
+++ b/share/server/util.js
@@ -94,7 +94,7 @@ function recursivelySeal(obj) {
// prints the object as JSON, and rescues and logs any toJSON() related errors
function respond(obj) {
try {
- print(toJSON(obj));
+ print(toJSON(obj));
} catch(e) {
log("Error converting object to JSON: " + e.toString());
}