From 76db305ffa2d4e39ac27418edd9e7484e8e07d8a Mon Sep 17 00:00:00 2001 From: Tim Turner Date: Sat, 28 Jan 2017 09:42:37 -0500 Subject: [PATCH] Add movie year to NotificationService (#496) --- 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 53c237159..46bc15a97 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); }