From 2e90ea9c198e1306b2980c0eccbc8afa465fdf29 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 19 May 2016 18:54:49 -0700 Subject: [PATCH] Fixed: Prefix Twitter notifications (Grabbed/Imported) --- src/NzbDrone.Core/Notifications/Twitter/Twitter.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/Twitter/Twitter.cs b/src/NzbDrone.Core/Notifications/Twitter/Twitter.cs index 85b454c97..c925c2bc6 100644 --- a/src/NzbDrone.Core/Notifications/Twitter/Twitter.cs +++ b/src/NzbDrone.Core/Notifications/Twitter/Twitter.cs @@ -20,14 +20,14 @@ namespace NzbDrone.Core.Notifications.Twitter get { return "https://twitter.com/"; } } - public override void OnGrab(GrabMessage grabMessage) + public override void OnGrab(GrabMessage message) { - _twitterService.SendNotification(grabMessage.Message, Settings); + _twitterService.SendNotification($"Grabbed: {message.Message}", Settings); } public override void OnDownload(DownloadMessage message) { - _twitterService.SendNotification(message.Message, Settings); + _twitterService.SendNotification($"Imported: {message.Message}", Settings); } public override void OnRename(Series series)