Skip to content

Commit 899f509

Browse files
committed
minor
1 parent 776b32c commit 899f509

File tree

1 file changed

+3
-3
lines changed
  • services/static-webserver/client/source/class/osparc/store

1 file changed

+3
-3
lines changed

services/static-webserver/client/source/class/osparc/store/Services.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -391,10 +391,10 @@ qx.Class.define("osparc.store.Services", {
391391
// some services that go to the cache are not complete, e.g. study services
392392
// if the one in the cache is the complete one, do not overwrite it
393393
if (
394-
key in this.__servicesCached[key] &&
395-
version in this.__servicesCached[key] &&
396-
this.__servicesCached[key][version]["inputs"]
394+
this.__isInCache(key, version) &&
395+
"inputs" in this.__servicesCached[key][version]
397396
) {
397+
console.log("don't save", this.__servicesCached[key][version], value);
398398
return;
399399
}
400400
this.__servicesCached[key][version] = value;

0 commit comments

Comments
 (0)