From e2d6e3916862ce6a4a113740c5b99d295fa66c8b Mon Sep 17 00:00:00 2001 From: Tim Turner Date: Fri, 27 Jan 2017 20:32:16 -0500 Subject: [PATCH] Add movie year to NotificationService (#489) --- src/NzbDrone.Core/Notifications/NotificationService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/NotificationService.cs b/src/NzbDrone.Core/Notifications/NotificationService.cs index 0ee596330..9b0c80f3d 100644 --- a/src/NzbDrone.Core/Notifications/NotificationService.cs +++ b/src/NzbDrone.Core/Notifications/NotificationService.cs @@ -80,8 +80,9 @@ namespace NzbDrone.Core.Notifications qualityString += " Proper"; } - return string.Format("{0} [{1}]", + return string.Format("{0} ({1}) [{2}]", movie.Title, + movie.Year, qualityString); }