diff --git a/src/etapi/notes.js b/src/etapi/notes.js index f5110d646..500b4d6bc 100644 --- a/src/etapi/notes.js +++ b/src/etapi/notes.js @@ -162,7 +162,7 @@ function parseBoolean(obj, name) { return obj[name] === 'true'; } -function parseInteger(obj, name) { +function parseOrderDirection(obj, name) { if (!(name in obj)) { return undefined; } @@ -176,7 +176,7 @@ function parseInteger(obj, name) { return integer; } -function parseOrderDirection(obj, name) { +function parseInteger(obj, name) { if (!(name in obj)) { return undefined; }