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 1a5e44c commit f67f3d6Copy full SHA for f67f3d6
services/static-webserver/client/source/class/osparc/desktop/StudyEditor.js
@@ -333,9 +333,7 @@ qx.Class.define("osparc.desktop.StudyEditor", {
333
if (!socket.slotExists("projectDocument:updated")) {
334
socket.on("projectDocument:updated", data => {
335
if (data["projectId"] === this.getStudy().getUuid()) {
336
-
337
- // OM replace this by sessionId
338
- if (data["userPrimaryGid"] === osparc.auth.Data.getInstance().getGroupId()) {
+ if (data["clientSessionId"] && data["clientSessionId"] === osparc.utils.Utils.getClientSessionID()) {
339
// ignore my own updates
340
console.debug("Ignoring my own projectDocument:updated event", data);
341
return;
0 commit comments