mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
Fix duplicate search entries when editing
This commit is contained in:
parent
8eb2186335
commit
e49246028a
@ -114,8 +114,8 @@ module.exports = {
|
||||
AND: { 'entryPath': [entryPath] }
|
||||
}]
|
||||
})).then((results) => {
|
||||
if (results.totalHits > 0) {
|
||||
let delIds = _.map(results.hits, 'id')
|
||||
if (results && results.length > 0) {
|
||||
let delIds = _.map(results, 'id')
|
||||
return self._si.delAsync(delIds)
|
||||
} else {
|
||||
return true
|
||||
|
Loading…
Reference in New Issue
Block a user