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

pull/2/head
Jason Costomiris 7 years ago committed by Leonardo Galli
parent f1873a9684
commit 09c86013b0

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

Loading…
Cancel
Save