forked from svrjs/svrjs
Lint out the codebase
This commit is contained in:
parent
058c39ab0d
commit
09e33a2265
1 changed files with 4 additions and 1 deletions
|
@ -1674,7 +1674,10 @@ function saveConfig() {
|
||||||
if (configJSONobj.optOutOfStatisticsServer === undefined)
|
if (configJSONobj.optOutOfStatisticsServer === undefined)
|
||||||
configJSONobj.optOutOfStatisticsServer = false;
|
configJSONobj.optOutOfStatisticsServer = false;
|
||||||
|
|
||||||
fs.writeFileSync(process.dirname + "/config.json", JSON.stringify(configJSONobj, null, 2) + "\n");
|
fs.writeFileSync(
|
||||||
|
process.dirname + "/config.json",
|
||||||
|
JSON.stringify(configJSONobj, null, 2) + "\n",
|
||||||
|
);
|
||||||
break;
|
break;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (i >= 2) throw err;
|
if (i >= 2) throw err;
|
||||||
|
|
Reference in a new issue