Skip to content

Commit 3affc7f

Browse files
committed
minor
1 parent 1b974e8 commit 3affc7f

File tree

1 file changed

+3
-1
lines changed
  • services/static-webserver/client/source/class/osparc/conversation

1 file changed

+3
-1
lines changed

services/static-webserver/client/source/class/osparc/conversation/Conversation.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,9 @@ qx.Class.define("osparc.conversation.Conversation", {
242242
control = new osparc.conversation.NotificationUI(message);
243243
break;
244244
}
245-
this.__messagesList.add(control);
245+
if (control) {
246+
this.__messagesList.add(control);
247+
}
246248
});
247249
},
248250
}

0 commit comments

Comments
 (0)