cross-tab-worker-databus 0.20.62 → 0.20.63

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.
@@ -798,9 +798,11 @@ var WorkerClusterRuntime = class {
798
798
  this.handlers.onEvent(message.eventType, message.payload, message.sourceWorkerId, message.originTabId);
799
799
  return;
800
800
  case "REGISTRY":
801
- default:
802
801
  this.reconcile();
803
802
  return;
803
+ default:
804
+ this.handlers.onUnknownMessage?.(message);
805
+ return;
804
806
  }
805
807
  };
806
808
  /** Handle a point-to-point CONTROL message (SUBSCRIBE / UNSUBSCRIBE / PUBLISH). */