Fixed: Growl download notification title

This commit is contained in:
Keivan Beigi 2017-01-22 13:07:21 -08:00
parent 15e07f72d4
commit fbd2f8dea4
No known key found for this signature in database
GPG Key ID: C536675AC49003C0
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}