From 9953a5ed0658184c59583a88f58031997481fb5f Mon Sep 17 00:00:00 2001 From: Tim Turner Date: Sat, 28 Jan 2017 06:33:15 -0500 Subject: [PATCH] Revert "Add movie year to NotificationService (#489)" This reverts commit e2d6e3916862ce6a4a113740c5b99d295fa66c8b. --- src/NzbDrone.Core/Notifications/NotificationService.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/NotificationService.cs b/src/NzbDrone.Core/Notifications/NotificationService.cs index 9b0c80f3d..0ee596330 100644 --- a/src/NzbDrone.Core/Notifications/NotificationService.cs +++ b/src/NzbDrone.Core/Notifications/NotificationService.cs @@ -80,9 +80,8 @@ namespace NzbDrone.Core.Notifications qualityString += " Proper"; } - return string.Format("{0} ({1}) [{2}]", + return string.Format("{0} [{1}]", movie.Title, - movie.Year, qualityString); }