Skip to content

Commit 6c8ecbb

Browse files
committed
Merge branch 'beta' into stable
2 parents c3e706b + cc63f20 commit 6c8ecbb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/common/helpers/search.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ export function indexEntity(entity) {
254254
id: entity.bbid,
255255
index: _index,
256256
type: snakeCase(entity.type)
257-
});
257+
}).catch(error => { log.error('error indexing entity for search:', error); });
258258
}
259259
}
260260

@@ -263,7 +263,7 @@ export function deleteEntity(entity) {
263263
id: entity.bbid,
264264
index: _index,
265265
type: snakeCase(entity.type)
266-
});
266+
}).catch(error => { log.error('error deleting entity from index:', error); });
267267
}
268268

269269
export function refreshIndex() {

0 commit comments

Comments
 (0)