Skip to content

Commit 461075c

Browse files
committed
error handling
1 parent 13e7199 commit 461075c

File tree

1 file changed

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

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,10 @@ qx.Class.define("osparc.store.Services", {
110110
if (
111111
useCache &&
112112
this.__isInCache(key, version) &&
113-
"history" in this.__servicesCached[key][version]
113+
(
114+
this.__servicesCached[key][version] === null ||
115+
"history" in this.__servicesCached[key][version]
116+
)
114117
) {
115118
resolve(this.__servicesCached[key][version]);
116119
return;

0 commit comments

Comments
 (0)