@chat21/chat21-web-widget 5.0.60-rc.2 → 5.0.60
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/CHANGELOG.md
CHANGED
package/angular.json
CHANGED
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"src/iframe-style.css",
|
|
34
34
|
"src/widget-config-template.json",
|
|
35
35
|
"src/widget-config.json",
|
|
36
|
+
"src/environments/real_data/segment_script-dev.js",
|
|
36
37
|
"src/environments/real_data/widget-config-firebase.json",
|
|
37
38
|
"src/environments/real_data/widget-config-mqtt.json",
|
|
38
39
|
"src/environments/real_data/widget-config-docker.json",
|
package/package.json
CHANGED
|
@@ -148,7 +148,7 @@ export class MQTTConversationsHandler extends ConversationsHandlerService {
|
|
|
148
148
|
this.logger.debug('[MQTTConversationsHandler] connecting MQTT conversations handler');
|
|
149
149
|
this.chat21Service.chatClient.onConversationAdded( (conv) => {
|
|
150
150
|
let conversation = this.completeConversation(conv); // needed to get the "conversation_with", and find the conv in the conv-history
|
|
151
|
-
this.logger.log("onConversationAdded completed:",conversation);
|
|
151
|
+
this.logger.log("[MQTTConversationsHandler] onConversationAdded completed:",conversation);
|
|
152
152
|
const index = this.searchIndexInArrayForConversationWith(this.conversations, conversation.conversation_with);
|
|
153
153
|
if (index > -1) {
|
|
154
154
|
this.logger.log('[MQTTConversationsHandler] Added conv -> Changed!')
|