From fbd2f8dea4cbecc97aa007b0a99f8373cfdaaea1 Mon Sep 17 00:00:00 2001 From: Keivan Beigi Date: Sun, 22 Jan 2017 13:07:21 -0800 Subject: [PATCH] Fixed: Growl download notification title --- src/NzbDrone.Core/Notifications/Growl/Growl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/Growl/Growl.cs b/src/NzbDrone.Core/Notifications/Growl/Growl.cs index af6cb92f5..97232be70 100644 --- a/src/NzbDrone.Core/Notifications/Growl/Growl.cs +++ b/src/NzbDrone.Core/Notifications/Growl/Growl.cs @@ -26,7 +26,7 @@ namespace NzbDrone.Core.Notifications.Growl public override void OnDownload(DownloadMessage message) { - _growlService.SendNotification(EPISODE_GRABBED_TITLE, message.Message, "DOWNLOAD", Settings.Host, Settings.Port, Settings.Password); + _growlService.SendNotification(EPISODE_DOWNLOADED_TITLE, message.Message, "DOWNLOAD", Settings.Host, Settings.Port, Settings.Password); }