1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-18 21:29:46 +00:00

Fixed: Join grab messages

Fixes #1751
This commit is contained in:
Mark McDowall 2017-03-10 13:20:11 -08:00
parent 2bf3b9e7dd
commit 878e973081

View file

@ -17,9 +17,9 @@ namespace NzbDrone.Core.Notifications.Join
public override string Link => "https://joaoapps.com/join/";
public override void OnGrab(GrabMessage grabMessage)
public override void OnGrab(GrabMessage message)
{
_proxy.SendNotification(EPISODE_GRABBED_TITLE_BRANDED, Message.Message, Settings);
_proxy.SendNotification(EPISODE_GRABBED_TITLE_BRANDED, message.Message, Settings);
}
public override void OnDownload(DownloadMessage message)