wingbot 3.67.1 → 3.67.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wingbot",
3
- "version": "3.67.1",
3
+ "version": "3.67.2",
4
4
  "description": "Enterprise Messaging Bot Conversation Engine",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -498,6 +498,7 @@ class CustomEntityDetectionModel {
498
498
  // filter the text
499
499
  for (let i = entities.length - 1; i >= 0; i--) {
500
500
  const entity = entities[i];
501
+ if (!this._entityDetectors.has(entity.entity)) continue;
501
502
  const { anonymize } = this._entityDetectors.get(entity.entity);
502
503
 
503
504
  if (anonymize) {