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 68e8d04 commit d5315f9Copy full SHA for d5315f9
services/static-webserver/client/source/class/osparc/store/Services.js
@@ -123,7 +123,11 @@ qx.Class.define("osparc.store.Services", {
123
124
getService: function(key, version, useCache = true) {
125
return new Promise(resolve => {
126
- if (useCache && this.__isInCache(key, version)) {
+ if (
127
+ useCache &&
128
+ this.__isInCache(key, version) &&
129
+ "history" in this.__servicesCached[key][version]
130
+ ) {
131
resolve(this.__servicesCached[key][version]);
132
return;
133
}
0 commit comments