@phpsandbox/sdk 0.0.13 → 0.0.14

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.
@@ -4716,9 +4716,10 @@ var NotebookInstance = class {
4716
4716
  return disposable;
4717
4717
  }
4718
4718
  async reconnect() {
4719
+ const whenConnected = this.whenConnected();
4719
4720
  this.socket.reconnect();
4720
4721
  this.initialized = false;
4721
- await this.whenConnected();
4722
+ await whenConnected;
4722
4723
  __privateMethod(this, _NotebookInstance_instances, init_fn).call(this);
4723
4724
  return this.ready().then(() => this);
4724
4725
  }