@stemy/ngx-utils 12.2.1 → 12.2.2

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.
@@ -1407,7 +1407,13 @@
1407
1407
  .concat(["level-" + this.level]);
1408
1408
  }
1409
1409
  FileSystemEntry.prototype.open = function () {
1410
+ var _this = this;
1410
1411
  this.result = this.result || this.openCb(this.data, this);
1412
+ this.result.then(function (res) {
1413
+ if (Array.isArray(res))
1414
+ return;
1415
+ _this.result = null;
1416
+ });
1411
1417
  return this.result;
1412
1418
  };
1413
1419
  return FileSystemEntry;