From 7f09ec25a27e18c45d60a3410ed568a32c15e41d Mon Sep 17 00:00:00 2001 From: John McLear Date: Wed, 13 Feb 2013 21:53:15 +0000 Subject: [PATCH] no need for prefix and tidy double semi --- src/node/utils/Settings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/utils/Settings.js b/src/node/utils/Settings.js index 67e748bb..04404a1a 100644 --- a/src/node/utils/Settings.js +++ b/src/node/utils/Settings.js @@ -190,7 +190,7 @@ exports.reloadSettings = function reloadSettings() { log4js.replaceConsole(); if(!exports.sessionKey){ // If the secretKey isn't set we also create yet another unique value here - exports.sessionKey = "__bad__"+randomString(32);; + exports.sessionKey = randomString(32); console.warn("You need to set a sessionKey value in settings.json, this will allow your users to reconnect to your Etherpad Instance if your instance restarts"); }