Prevent configuration leakage in Windows
This commit is contained in:
parent
91e03e5866
commit
a2c23e0245
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
@ -260,7 +260,7 @@ Mod.prototype.callback = function (req, res, serverconsole, responseEnd, href, e
|
||||||
callServerError(500, "OrangeCircle/" + version, ex);
|
callServerError(500, "OrangeCircle/" + version, ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (href == "/orangecircle-config.json" && path.normalize(__dirname + "/../../..") == process.cwd()) {
|
} else if ((href == "/orangecircle-config.json" || (os.platform() == "win32" && href.toLowerCase() == "/orangecircle-config.json")) && path.normalize(__dirname + "/../../..") == process.cwd()) {
|
||||||
if (!callServerError) {
|
if (!callServerError) {
|
||||||
res.writeHead(200, "OK", {
|
res.writeHead(200, "OK", {
|
||||||
"Content-Type": "application/json",
|
"Content-Type": "application/json",
|
||||||
|
|
Loading…
Reference in a new issue