From 09c86013b0cd226bebeb8bdfaf559a6261ae95fd Mon Sep 17 00:00:00 2001 From: Jason Costomiris Date: Mon, 5 Jun 2017 06:06:20 -0400 Subject: [PATCH] Added: [Radarr] tag for Twitter Notifications (#1558) --- 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 e789654dc..037fb947c 100644 --- a/src/NzbDrone.Core/Notifications/Twitter/Twitter.cs +++ b/src/NzbDrone.Core/Notifications/Twitter/Twitter.cs @@ -21,18 +21,18 @@ namespace NzbDrone.Core.Notifications.Twitter public override void OnGrab(GrabMessage message) { - _twitterService.SendNotification($"Grabbed: {message.Message}", Settings); + _twitterService.SendNotification($"[Radarr] Grabbed: {message.Message}", Settings); } public override void OnDownload(DownloadMessage message) { - _twitterService.SendNotification($"Imported: {message.Message}", Settings); + _twitterService.SendNotification($"[Radarr] Imported: {message.Message}", Settings); } public override void OnMovieRename(Movie movie) { } - + public override void OnRename(Series series) { }