Skip to content

Commit beeb790

Browse files
committed
Fixed an issue where Data Exclusions wasn't being run on DefaultData
1 parent 3ab4f91 commit beeb790

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Shared/Plugins/Default/ConfigurationDefaultsPlugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public void Run(EventPluginContext context) {
88
context.Event.Tags.Add(tag);
99

1010
foreach (var data in context.Client.Configuration.DefaultData)
11-
context.Event.Data[data.Key] = data.Value;
11+
context.Event.SetProperty(data.Key, data.Value, excludedPropertyNames: context.Client.Configuration.DataExclusions);
1212
}
1313
}
1414
}

0 commit comments

Comments
 (0)