@cadenza.io/core 3.1.8 → 3.1.9

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/index.js CHANGED
@@ -232,7 +232,7 @@ var SignalBroker = class _SignalBroker {
232
232
  const parts = signal.slice(0, Math.max(signal.lastIndexOf(":"), signal.lastIndexOf("."))).split(".");
233
233
  for (let i = parts.length; i > -1; i--) {
234
234
  const parent = parts.slice(0, i).join(".");
235
- executed = executed || this.executeListener(parent + ".*", context);
235
+ executed = this.executeListener(parent + ".*", context) || executed;
236
236
  }
237
237
  }
238
238
  return executed;