@hivegpt/hiveai-angular 0.0.164 → 0.0.165

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.
@@ -806,7 +806,10 @@
806
806
  };
807
807
  ChatDrawerComponent.prototype.initializeSocket = function () {
808
808
  console.log("Socket connection");
809
- this.socketService.registerUserSpecificHiveSocket(this.botId, this.conversation.getKey(this.botId));
809
+ console.log(this.botId);
810
+ var conversation_id = this.conversation.getKey(this.botId);
811
+ console.log(conversation_id);
812
+ this.socketService.registerUserSpecificHiveSocket(this.botId, conversation_id);
810
813
  };
811
814
  ChatDrawerComponent.prototype.listenSockets = function () {
812
815
  var _this = this;