adhdev 0.8.86 → 0.8.87

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/cli/index.js CHANGED
@@ -77824,6 +77824,8 @@ var init_server_connection = __esm({
77824
77824
  if (misses >= 3 && this.ws) {
77825
77825
  LOG.warn("Server", `[ServerConn] Pong timeout (${misses}x) \u2014 closing stale WS`);
77826
77826
  this.ws.terminate();
77827
+ } else if (misses === 1) {
77828
+ LOG.info("Server", `[ServerConn] Pong timeout (${misses}x) \u2014 keeping WS open and retrying`);
77827
77829
  } else {
77828
77830
  LOG.warn("Server", `[ServerConn] Pong timeout (${misses}x) \u2014 keeping WS open and retrying`);
77829
77831
  }
@@ -86379,7 +86381,7 @@ var init_adhdev_daemon = __esm({
86379
86381
  init_source();
86380
86382
  init_version();
86381
86383
  init_src();
86382
- pkgVersion = resolvePackageVersion({ injectedVersion: "0.8.86" });
86384
+ pkgVersion = resolvePackageVersion({ injectedVersion: "0.8.87" });
86383
86385
  AdhdevDaemon = class _AdhdevDaemon {
86384
86386
  localHttpServer = null;
86385
86387
  localWss = null;