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) { }