diff --git a/src/etapi/special_notes.js b/src/etapi/special_notes.js index 3cc38260b..7e1e2a6f5 100644 --- a/src/etapi/special_notes.js +++ b/src/etapi/special_notes.js @@ -20,7 +20,7 @@ function register(router) { const {date} = req.params; if (!isValidDate(date)) { - throw getDateInvalidError(res, date); + throw getDateInvalidError(date); } const note = specialNotesService.getInboxNote(date); @@ -31,7 +31,7 @@ function register(router) { const {date} = req.params; if (!isValidDate(date)) { - throw getDateInvalidError(res, date); + throw getDateInvalidError(date); } const note = dateNotesService.getDayNote(date); @@ -42,7 +42,7 @@ function register(router) { const {date} = req.params; if (!isValidDate(date)) { - throw getDateInvalidError(res, date); + throw getDateInvalidError(date); } const note = dateNotesService.getWeekNote(date); @@ -53,7 +53,7 @@ function register(router) { const {month} = req.params; if (!/[0-9]{4}-[0-9]{2}/.test(month)) { - throw getMonthInvalidError(res, month); + throw getMonthInvalidError(month); } const note = dateNotesService.getMonthNote(month); @@ -64,7 +64,7 @@ function register(router) { const {year} = req.params; if (!/[0-9]{4}/.test(year)) { - throw getYearInvalidError(res, year); + throw getYearInvalidError(year); } const note = dateNotesService.getYearNote(year); diff --git a/src/services/search/services/parse.js b/src/services/search/services/parse.js index 6332f7728..1580caa37 100644 --- a/src/services/search/services/parse.js +++ b/src/services/search/services/parse.js @@ -155,7 +155,7 @@ function getExpression(tokens, searchContext, level = 0) { i++; - return new NoteContentFulltextExp(operator.token, {tokens: [tokens[i].token], raw }); + return new NoteContentFulltextExp(operator.token, {tokens: [tokens[i].token], raw}); } if (tokens[i].token === 'parents') { @@ -389,7 +389,7 @@ function getExpression(tokens, searchContext, level = 0) { else if (token === 'note') { i++; - expressions.push(parseNoteProperty(tokens)); + expressions.push(parseNoteProperty()); continue; } diff --git a/src/services/sql.js b/src/services/sql.js index 71af2394f..1b20eaff2 100644 --- a/src/services/sql.js +++ b/src/services/sql.js @@ -217,7 +217,7 @@ function wrap(query, func) { // in these cases error should be simply ignored. console.log(e.message); - return null + return null; } throw e; @@ -281,7 +281,7 @@ function fillParamList(paramIds, truncate = true) { } // doing it manually to avoid this showing up on the sloq query list - const s = stmt(`INSERT INTO param_list VALUES ${paramIds.map(paramId => `(?)`).join(',')}`, paramIds); + const s = stmt(`INSERT INTO param_list VALUES ${paramIds.map(paramId => `(?)`).join(',')}`); s.run(paramIds); }