From d50514f8bc8e6a7d2706c090e142f7be06831b8b Mon Sep 17 00:00:00 2001 From: vertigo235 Date: Wed, 25 Jan 2017 21:18:03 -0500 Subject: [PATCH] Download Movie Quality & Formatting Fix downloaded movie quality and add space between movie name and quality. --- src/NzbDrone.Core/Notifications/NotificationService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/NotificationService.cs b/src/NzbDrone.Core/Notifications/NotificationService.cs index ffad0cbe5..eefef7653 100644 --- a/src/NzbDrone.Core/Notifications/NotificationService.cs +++ b/src/NzbDrone.Core/Notifications/NotificationService.cs @@ -80,7 +80,7 @@ namespace NzbDrone.Core.Notifications qualityString += " Proper"; } - return string.Format("{0}[{1}]", + return string.Format("{0} [{1}]", movie.Title, qualityString); } @@ -210,7 +210,7 @@ namespace NzbDrone.Core.Notifications public void Handle(MovieDownloadedEvent message) { var downloadMessage = new DownloadMessage(); - downloadMessage.Message = GetMessage(message.Movie.Movie, message.Movie.ParsedMovieInfo.Quality); + downloadMessage.Message = GetMessage(message.Movie.Movie, message.Movie.Quality); downloadMessage.Series = null; downloadMessage.EpisodeFile = null; downloadMessage.Movie = message.Movie.Movie;