Skip to content

Commit

Permalink
Fixed: Testing for disabled Notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
mynameisbogdan committed Jan 24, 2024
1 parent b808a92 commit 23830f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NzbDrone.Core/Notifications/NotificationDefinition.cs
Expand Up @@ -30,6 +30,6 @@ public class NotificationDefinition : ProviderDefinition
public bool SupportsOnApplicationUpdate { get; set; }
public bool SupportsOnManualInteractionRequired { get; set; }

public override bool Enable => OnGrab || OnDownload || (OnDownload && OnUpgrade) || OnMovieAdded || OnMovieDelete || OnMovieFileDelete || OnMovieFileDeleteForUpgrade || OnHealthIssue || OnHealthRestored || OnApplicationUpdate || OnManualInteractionRequired;
public override bool Enable => OnGrab || OnDownload || (OnDownload && OnUpgrade) || OnMovieAdded || OnMovieDelete || OnMovieFileDelete || (OnMovieFileDelete && OnMovieFileDeleteForUpgrade) || OnHealthIssue || OnHealthRestored || OnApplicationUpdate || OnManualInteractionRequired;
}
}

0 comments on commit 23830f5

Please sign in to comment.