script bugfixes

This commit is contained in:
azivner
2018-01-30 21:25:47 -05:00
parent 5217339209
commit 72bd2507fe
4 changed files with 7 additions and 29 deletions

View File

@@ -15,8 +15,6 @@ async function executeScript(noteId, dataKey, script, params) {
ret = await (function() { return eval(`(${script})(${paramsStr})`); }.call(ctx));
});
log.info('Execution result: ' + ret);
return ret;
}