1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

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

View File

@ -21,18 +21,18 @@ public Twitter(ITwitterService twitterService)
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)
{
}