We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aa9e94 commit 93fa107Copy full SHA for 93fa107
services/static-webserver/client/source/class/osparc/support/Conversation.js
@@ -123,9 +123,13 @@ qx.Class.define("osparc.support.Conversation", {
123
addMessages.addListener("messageAdded", e => {
124
const data = e.getData();
125
if (data["conversationId"] && this.getConversation() === null) {
126
- this.setConversationId(data["conversationId"]);
+ osparc.store.ConversationsSupport.getInstance().getConversation(data["conversationId"])
127
+ .then(conversation => {
128
+ this.setConversation(conversation);
129
+ });
130
+ } else {
131
+ this.addMessage(data);
132
}
- this.addMessage(data);
133
});
134
},
135
0 commit comments