@riddix/hamh 2.1.0-alpha.515 → 2.1.0-alpha.516

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.
@@ -178731,6 +178731,9 @@ var BridgeEndpointManager = class extends Service {
178731
178731
  this.log.debug(`Skipping disabled entity: ${entityId}`);
178732
178732
  continue;
178733
178733
  }
178734
+ if (this.registry.isAutoComposedDevicesEnabled() && this.registry.isComposedSubEntityUsed(entityId)) {
178735
+ continue;
178736
+ }
178734
178737
  if (entityId.length > MAX_ENTITY_ID_LENGTH) {
178735
178738
  const reason = `Entity ID too long (${entityId.length} chars, max ${MAX_ENTITY_ID_LENGTH}). This would cause filesystem errors.`;
178736
178739
  this.log.warn(`Skipping entity: ${entityId}. Reason: ${reason}`);