Skip to content

Commit

Permalink
Merge branch 'beta' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
MonkeyDo committed Feb 6, 2024
2 parents c3e706b + cc63f20 commit 6c8ecbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/helpers/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export function indexEntity(entity) {
id: entity.bbid,
index: _index,
type: snakeCase(entity.type)
});
}).catch(error => { log.error('error indexing entity for search:', error); });
}
}

Expand All @@ -263,7 +263,7 @@ export function deleteEntity(entity) {
id: entity.bbid,
index: _index,
type: snakeCase(entity.type)
});
}).catch(error => { log.error('error deleting entity from index:', error); });
}

export function refreshIndex() {
Expand Down

0 comments on commit 6c8ecbb

Please sign in to comment.