From c6d82bf98bfa5d692753814547500452befea204 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 18 Jul 2013 20:17:21 -0700 Subject: [PATCH] SeriesRenamed should trigger AfterRename --- NzbDrone.Core/Notifications/NotificationService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NzbDrone.Core/Notifications/NotificationService.cs b/NzbDrone.Core/Notifications/NotificationService.cs index fecb528c8..ac2916086 100644 --- a/NzbDrone.Core/Notifications/NotificationService.cs +++ b/NzbDrone.Core/Notifications/NotificationService.cs @@ -168,7 +168,7 @@ namespace NzbDrone.Core.Notifications .ToList() .ForEach(notification => notification.Instance - .OnDownload(message.Series.Title, message.Series) + .AfterRename(message.Series) ); } }