diff options
Diffstat (limited to 'ext/bg/js/database.js')
| -rw-r--r-- | ext/bg/js/database.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ext/bg/js/database.js b/ext/bg/js/database.js index 9b560f78..c53c9f77 100644 --- a/ext/bg/js/database.js +++ b/ext/bg/js/database.js @@ -137,7 +137,7 @@ class Database {          const visited = {};          const results = [];          const processRow = (row, index) => { -            if (titles.includes(row.dictionary) && !visited.hasOwnProperty(row.id)) { +            if (titles.includes(row.dictionary) && !hasOwn(visited, row.id)) {                  visited[row.id] = true;                  results.push(Database.createTerm(row, index));              } |