Added: [Radarr] tag for Twitter Notifications (#1558)

This commit is contained in:
Jason Costomiris 2017-06-05 06:06:20 -04:00 committed by Leonardo Galli
parent f1873a9684
commit 09c86013b0
1 changed files with 3 additions and 3 deletions

View File

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