Skip to content

Commit df68634

Browse files
committed
minor
1 parent be86059 commit df68634

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

services/static-webserver/client/source/class/osparc/support/ConversationPage.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ qx.Class.define("osparc.support.ConversationPage", {
6868
backgroundColor: "transparent"
6969
});
7070
control.addListener("execute", () => {
71-
this.getConversation().setReadBy(true);
71+
if (this.getConversation()) {
72+
this.getConversation().setReadBy(true);
73+
}
7274
this.setConversation(null);
7375
this.fireEvent("backToConversations");
7476
});

0 commit comments

Comments
 (0)