Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/2e90ea9c198e1306b2980c0eccbc8afa465fdf29 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Prefix Twitter notifications (Grabbed/Imported)

pull/1284/head
Mark McDowall 9 years ago
parent a6b1a1fc0d
commit 2e90ea9c19

@ -20,14 +20,14 @@ namespace NzbDrone.Core.Notifications.Twitter
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)

Loading…
Cancel
Save