Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/Sentry/SentryClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ public SentryId CaptureFeedback(SentryFeedback feedback, out CaptureFeedbackResu
// Evaluate and copy before invoking the callback
scope.Evaluate();
scope.Apply(evt);
_enricher.Apply(evt);

if (scope.Level != null && scope.Level != SentryLevel.Info)
{
Expand Down
1 change: 1 addition & 0 deletions test/Sentry.Tests/SentryClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1006,6 +1006,7 @@ public void CaptureFeedback_WithEventProcessor_EventProcessorApplied()
var item = envelope.Items.First(x => x.TryGetType() == EnvelopeItem.TypeValueFeedback);
var @event = (SentryEvent)((JsonSerializable)item.Payload).Source;
@event.Environment.Should().Be("testing 123");
@event.Sdk.InternalPackages.Should().ContainSingle().Which.Name.Should().Be("nuget:sentry.dotnet");
}

[Fact]
Expand Down
Loading