From ffaae136803dab1f9c2ad1870ac485b5a6d559b9 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Tue, 17 Apr 2012 23:10:24 -0700 Subject: [PATCH] Fixed: Twitter download complete message grammar. --- NzbDrone.Core/Providers/ExternalNotification/Twitter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NzbDrone.Core/Providers/ExternalNotification/Twitter.cs b/NzbDrone.Core/Providers/ExternalNotification/Twitter.cs index 83e85b302..9f5125d1a 100644 --- a/NzbDrone.Core/Providers/ExternalNotification/Twitter.cs +++ b/NzbDrone.Core/Providers/ExternalNotification/Twitter.cs @@ -33,7 +33,7 @@ namespace NzbDrone.Core.Providers.ExternalNotification if (_configProvider.TwitterNotifyOnDownload) { _logger.Trace("Sending Notification to Twitter (On Grab)"); - _twitterProvider.SendTweet("Downloaded Complete: " + message); + _twitterProvider.SendTweet("Download Completed: " + message); } }