mirror of
https://github.com/Readarr/Readarr.git
synced 2026-09-22 03:05:03 -04:00
Fixed: Prefix Twitter notifications (Grabbed/Imported)
This commit is contained in:
1 parent
a6b1a1fc0d
commit
2e90ea9c19
1 file changed
+3
-3
@@ -20,14 +20,14 @@ public override string Link
|
||||
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)
|
||||
{
|
||||
_twitterService.SendNotification(message.Message, Settings);
|
||||
_twitterService.SendNotification($"Imported: {message.Message}", Settings);
|
||||
}
|
||||
|
||||
public override void OnRename(Series series)
|
||||
|
||||
Reference in new issue
Block a user