mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: Prefix Twitter notifications (Grabbed/Imported)
This commit is contained in:
@@ -20,14 +20,14 @@ namespace NzbDrone.Core.Notifications.Twitter
|
|||||||
get { return "https://twitter.com/"; }
|
get { return "https://twitter.com/"; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void OnGrab(GrabMessage grabMessage)
|
public override void OnGrab(GrabMessage message)
|
||||||
{
|
{
|
||||||
_twitterService.SendNotification(grabMessage.Message, Settings);
|
_twitterService.SendNotification($"Grabbed: {message.Message}", Settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void OnDownload(DownloadMessage message)
|
public override void OnDownload(DownloadMessage message)
|
||||||
{
|
{
|
||||||
_twitterService.SendNotification(message.Message, Settings);
|
_twitterService.SendNotification($"Imported: {message.Message}", Settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void OnRename(Series series)
|
public override void OnRename(Series series)
|
||||||
|
Reference in New Issue
Block a user