@imposium-hub/components 1.38.12 → 1.38.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components.js +1 -1
- package/dist/components.js.map +1 -1
- package/package.json +1 -1
- package/services/API.ts +2 -2
package/package.json
CHANGED
package/services/API.ts
CHANGED
|
@@ -767,14 +767,14 @@ export default class API {
|
|
|
767
767
|
} else if (res.data.output !== undefined) {
|
|
768
768
|
if (isObjEmpty(res.data.output)) {
|
|
769
769
|
this.experiencePollTimer = setTimeout(() => {
|
|
770
|
-
this.
|
|
770
|
+
this.pollForExperience(config, resolve, reject);
|
|
771
771
|
}, this.pollingInterval);
|
|
772
772
|
} else {
|
|
773
773
|
resolve(res.data);
|
|
774
774
|
}
|
|
775
775
|
} else {
|
|
776
776
|
this.experiencePollTimer = setTimeout(() => {
|
|
777
|
-
this.
|
|
777
|
+
this.pollForExperience(config, resolve, reject);
|
|
778
778
|
}, this.pollingInterval);
|
|
779
779
|
}
|
|
780
780
|
})
|