Skip to content

Commit 9b61082

Browse files
committed
Updated the manual stacking key name
1 parent 0810dc3 commit 9b61082

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/Shared/Extensions/EventExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ public static void SetManualStackingKey(this Event ev, string manualStackingKey)
314314
if (String.IsNullOrWhiteSpace(manualStackingKey))
315315
return;
316316

317-
ev.Data[Event.KnownDataKeys.ManualStackingKey] = new StackingInfo(null, new Dictionary<string, string> { { String.Empty, manualStackingKey } });
317+
ev.Data[Event.KnownDataKeys.ManualStackingKey] = new StackingInfo(null, new Dictionary<string, string> { { "ManualStackingKey", manualStackingKey } });
318318
}
319319

320320
/// <summary>
@@ -327,7 +327,7 @@ public static void SetManualStackingKey(this Event ev, string title, string manu
327327
if (String.IsNullOrWhiteSpace(title) || String.IsNullOrWhiteSpace(manualStackingKey))
328328
return;
329329

330-
ev.Data[Event.KnownDataKeys.ManualStackingKey] = new StackingInfo(title, new Dictionary<string, string> { { String.Empty, manualStackingKey } });
330+
ev.Data[Event.KnownDataKeys.ManualStackingKey] = new StackingInfo(title, new Dictionary<string, string> { { "ManualStackingKey", manualStackingKey } });
331331
}
332332

333333
public static T GetDataValue<T>(this Event ev, string key, IJsonSerializer serializer = null) {

0 commit comments

Comments
 (0)