diff --git a/src/event-bus.ts b/src/event-bus.ts index f9951fb4..2a6c08d2 100644 --- a/src/event-bus.ts +++ b/src/event-bus.ts @@ -89,7 +89,7 @@ export class EventBus context?: TContext, ) { if (this._publisher.publishAll) { - return this._publisher.publishAll(events); + return this._publisher.publishAll(events, context); } return (events || []).map((event) => this._publisher.publish(event, context),