From 7aaa6d738afb95cafef50aa89ddfd79cb98fe3e2 Mon Sep 17 00:00:00 2001 From: Tim Date: Sat, 12 Oct 2019 16:39:14 -0600 Subject: [PATCH] Updated SlackNotification.cs Corrected Notification Type on Request Declined --- src/Ombi.Notifications/Agents/SlackNotification.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ombi.Notifications/Agents/SlackNotification.cs b/src/Ombi.Notifications/Agents/SlackNotification.cs index 58b2da651..5b82c1434 100644 --- a/src/Ombi.Notifications/Agents/SlackNotification.cs +++ b/src/Ombi.Notifications/Agents/SlackNotification.cs @@ -79,7 +79,7 @@ namespace Ombi.Notifications.Agents protected override async Task RequestDeclined(NotificationOptions model, SlackNotificationSettings settings) { - await Run(model, settings, NotificationType.RequestAvailable); + await Run(model, settings, NotificationType.RequestDeclined); } protected override async Task RequestApproved(NotificationOptions model, SlackNotificationSettings settings)