1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-25 17:27:59 +00:00

Fixed: Twitter download complete message grammar.

This commit is contained in:
Mark McDowall 2012-04-17 23:10:24 -07:00
parent aec59de6b6
commit ffaae13680

View file

@ -33,7 +33,7 @@ public override void OnDownload(string message, Series series)
if (_configProvider.TwitterNotifyOnDownload) if (_configProvider.TwitterNotifyOnDownload)
{ {
_logger.Trace("Sending Notification to Twitter (On Grab)"); _logger.Trace("Sending Notification to Twitter (On Grab)");
_twitterProvider.SendTweet("Downloaded Complete: " + message); _twitterProvider.SendTweet("Download Completed: " + message);
} }
} }