wingbot 3.46.0 → 3.46.1

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.46.0",
3
+ "version": "3.46.1",
4
4
  "description": "Enterprise Messaging Bot Conversation Engine",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -161,7 +161,8 @@ class ReturnSender {
161
161
  : this.textFilter;
162
162
 
163
163
  return this._responseTexts
164
- .map((t) => filter(t));
164
+ .map((t) => filter(t))
165
+ .filter((t) => t && `${t}`.trim());
165
166
  }
166
167
 
167
168
  _gotAnotherEvent () {