mirror of https://github.com/calzoneman/sync.git
Emergency patch
This commit is contained in:
parent
0c26f68f1c
commit
212fae9fc8
|
@ -94,6 +94,9 @@ var Server = {
|
||||||
|
|
||||||
// default path
|
// default path
|
||||||
this.app.get("/:thing(*)", function (req, res, next) {
|
this.app.get("/:thing(*)", function (req, res, next) {
|
||||||
|
while(req.params.thing.indexOf("%25") != -1)
|
||||||
|
req.params.thing = decodeURIComponent(req.params.thing);
|
||||||
|
req.params.thing = decodeURIComponent(req.params.thing);
|
||||||
var root = __dirname + "/www/",
|
var root = __dirname + "/www/",
|
||||||
answer = path.resolve (__dirname + "/www/", req.params.thing);
|
answer = path.resolve (__dirname + "/www/", req.params.thing);
|
||||||
if (answer.indexOf (root) != 0)
|
if (answer.indexOf (root) != 0)
|
||||||
|
|
Loading…
Reference in New Issue