Browse Source

EventBus: InMemoryEventBusSubscriptionsManager: Typo while invoking event #866

pull/917/head
Alexander Shabunevich 6 years ago
parent
commit
9d07273d6c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/BuildingBlocks/EventBus/EventBus/InMemoryEventBusSubscriptionsManager.cs

+ 1
- 1
src/BuildingBlocks/EventBus/EventBus/InMemoryEventBusSubscriptionsManager.cs View File

@ -117,7 +117,7 @@ namespace Microsoft.eShopOnContainers.BuildingBlocks.EventBus
var handler = OnEventRemoved;
if (handler != null)
{
OnEventRemoved(this, eventName);
handler(this, eventName);
}
}


Loading…
Cancel
Save