wingbot 3.67.5 → 3.67.6

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Ai.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wingbot",
3
- "version": "3.67.5",
3
+ "version": "3.67.6",
4
4
  "description": "Enterprise Messaging Bot Conversation Engine",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/Ai.js CHANGED
@@ -303,6 +303,7 @@ class Ai {
303
303
  if (typeof wordEntityDetector === 'function' && wordEntityDetector.length === 0) {
304
304
  // @ts-ignore
305
305
  this._wordEntityDetectorFactory = wordEntityDetector;
306
+ this._wordEntityDetector = null;
306
307
  return this;
307
308
  }
308
309