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 13e7199 commit 461075cCopy full SHA for 461075c
services/static-webserver/client/source/class/osparc/store/Services.js
@@ -110,7 +110,10 @@ qx.Class.define("osparc.store.Services", {
110
if (
111
useCache &&
112
this.__isInCache(key, version) &&
113
- "history" in this.__servicesCached[key][version]
+ (
114
+ this.__servicesCached[key][version] === null ||
115
+ "history" in this.__servicesCached[key][version]
116
+ )
117
) {
118
resolve(this.__servicesCached[key][version]);
119
return;
0 commit comments