Fix the hideElements option

I broke this with my incorrect advice :D
This commit is contained in:
Rowan Manning
2016-11-07 14:26:28 +00:00
committed by Rowan Manning
parent 9df456c7c1
commit 509914d19a
4 changed files with 4 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ function route(app) {
username: req.body.username || undefined,
password: req.body.password || undefined,
headers: parsedHeaders || undefined,
hideElements: req.body['hide-elements'] || undefined
hideElements: req.body.hideElements || undefined
};
app.webservice.tasks.create(newTask, (err, task) => {