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 06da80e commit 90a9087Copy full SHA for 90a9087
services/static-webserver/client/source/class/osparc/data/StreamTask.js
@@ -61,7 +61,7 @@ qx.Class.define("osparc.data.StreamTask", {
61
},
62
63
fetchStream: function() {
64
- if (!this.isDone()) {
+ if (!this.isEnd()) {
65
const streamPath = osparc.data.PollTask.extractPathname(this.getStreamHref());
66
const url = `${streamPath}?limit=${this.getPageSize()}`;
67
fetch(url)
@@ -89,7 +89,6 @@ qx.Class.define("osparc.data.StreamTask", {
89
this.fireDataEvent("streamReceived", items);
90
if (end) {
91
this.setEnd(true);
92
- this.setDone(true);
93
}
94
return;
95
0 commit comments