wingbot 3.68.10 → 3.68.12

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.68.10",
3
+ "version": "3.68.12",
4
4
  "description": "Enterprise Messaging Bot Conversation Engine",
5
5
  "main": "index.js",
6
6
  "type": "commonjs",
@@ -79,7 +79,8 @@ class OrchestratorClient {
79
79
  fromBot: e.sender
80
80
  ? e.sender.id !== this._senderId
81
81
  : e.recipient.id === this._senderId,
82
- text
82
+ text,
83
+ timestamp: e.timestamp
83
84
  };
84
85
  })
85
86
  .filter((ret) => !!ret.text);
package/src/Responder.js CHANGED
@@ -722,7 +722,7 @@ class Responder {
722
722
 
723
723
  const action = this.toAbsoluteAction(reply.action);
724
724
 
725
- if (ifNotExists && !this._quickReplyCollector.some((q) => q.action === action)) {
725
+ if (ifNotExists && this._quickReplyCollector.some((q) => q.action === action)) {
726
726
  return this;
727
727
  }
728
728