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 b0016b0 commit eacc4c9Copy full SHA for eacc4c9
services/static-webserver/client/source/class/osparc/store/Services.js
@@ -67,7 +67,7 @@ qx.Class.define("osparc.store.Services", {
67
const services = this.__servicesCached;
68
if (key in services && version in services[key]) {
69
const historyEntry = osparc.service.Utils.getHistoryEntry(services[key][version]);
70
- if (historyEntry["compatibility"] && historyEntry["compatibility"]["canUpdateTo"]) {
+ if (historyEntry && historyEntry["compatibility"] && historyEntry["compatibility"]["canUpdateTo"]) {
71
const canUpdateTo = historyEntry["compatibility"]["canUpdateTo"];
72
return {
73
key: "key" in canUpdateTo ? canUpdateTo["key"] : key, // key is optional
0 commit comments