diff --git a/NzbDrone.Core/Providers/SearchProvider.cs b/NzbDrone.Core/Providers/SearchProvider.cs index 257fddd7dc..6a122fe757 100644 --- a/NzbDrone.Core/Providers/SearchProvider.cs +++ b/NzbDrone.Core/Providers/SearchProvider.cs @@ -273,7 +273,7 @@ public List ProcessSearchResults(ProgressNotification notification, IEnumer if (_downloadProvider.DownloadReport(episodeParseResult)) { notification.CurrentMessage = - String.Format("{0} - S{1:00}E{2:00} {3}Added to download queue", + String.Format("{0} - S{1:00}E{2:00} {3} Added to download queue", episodeParseResult.Series.Title, episodeParseResult.SeasonNumber, episodeParseResult.EpisodeNumbers[0], episodeParseResult.Quality); @@ -324,7 +324,7 @@ public bool ProcessSearchResults(ProgressNotification notification, IEnumerable< if (_downloadProvider.DownloadReport(episodeParseResult)) { notification.CurrentMessage = - String.Format("{0} - {1} {2}Added to download queue", + String.Format("{0} - {1} {2} Added to download queue", episodeParseResult.Series.Title, episodeParseResult.AirDate.Value.ToShortDateString(), episodeParseResult.Quality); return true;