From 931935f60b3ddc56695b1dc5396d1f54ce7fb1cb Mon Sep 17 00:00:00 2001 From: Stuart Ferguson Date: Wed, 13 Nov 2019 17:01:30 +0000 Subject: [PATCH] :| recursive call fixed --- Shared.EventStore/EventStore/Aggregate.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared.EventStore/EventStore/Aggregate.cs b/Shared.EventStore/EventStore/Aggregate.cs index 8be08279..b893f1c2 100644 --- a/Shared.EventStore/EventStore/Aggregate.cs +++ b/Shared.EventStore/EventStore/Aggregate.cs @@ -159,7 +159,7 @@ private void BaseInitialise() public Object GetAggregateMetadata() { - return this.GetAggregateMetadata(); + return this.GetMetadata(); } ///