Skip to content

Commit 3565d13

Browse files
committed
minor
1 parent c0c5c80 commit 3565d13

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

services/static-webserver/client/source/class/osparc/desktop/MainPageHandler.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,11 @@ qx.Class.define("osparc.desktop.MainPageHandler", {
9898
// check if there is any linked node missing
9999
if (osparc.study.Utils.isAnyLinkedNodeMissing(studyData)) {
100100
const msg = `${qx.locale.Manager.tr("We encountered an issue with the")} ${studyAlias} <br>${qx.locale.Manager.tr("Please contact support.")}`;
101-
throw new Error(msg);
101+
if (osparc.utils.Utils.isDevelopmentPlatform()) {
102+
osparc.FlashMessenger.logError(msg);
103+
} else {
104+
throw new Error(msg);
105+
}
102106
}
103107

104108
this.setLoadingPageHeader(qx.locale.Manager.tr("Loading ") + studyData.name);

0 commit comments

Comments
 (0)