Skip to content

Commit

Permalink
[Sentry] Separate stable releases
Browse files Browse the repository at this point in the history
  • Loading branch information
bagusnl committed Dec 24, 2024
1 parent ef8bc3e commit 2946484
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Hi3Helper.Core/Classes/SentryHelper/SentryHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public static void InitializeSentrySdk()
o.SendDefaultPii = false;
o.MaxAttachmentSize = SentryMaxAttachmentSize;
o.DeduplicateMode = DeduplicateMode.All;
o.Environment = Debugger.IsAttached ? "debug" : "non-debug";
o.Environment = Debugger.IsAttached ? "debug" : IsPreview ? "non-debug" : "stable";
});
SentrySdk.ConfigureScope(s =>
{
Expand Down

0 comments on commit 2946484

Please sign in to comment.