Skip to content

Commit

Permalink
Fixed #852 - Email Notification Issue for Stacks marked as fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Feb 24, 2021
1 parent 0237d99 commit a11889e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Exceptionless.Core/Models/Stack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public Stack() {
public DateTime UpdatedUtc { get; set; }
public bool IsDeleted { get; set; }

public bool AllowNotifications => Status != StackStatus.Ignored && Status != StackStatus.Discarded && Status != StackStatus.Snoozed;
public bool AllowNotifications => Status != StackStatus.Fixed && Status != StackStatus.Ignored && Status != StackStatus.Discarded && Status != StackStatus.Snoozed;

public static class KnownTypes {
public const string Error = "error";
Expand Down

0 comments on commit a11889e

Please sign in to comment.