From 62da0568c0b224c5a6b5f2878c3d6540d4748cc3 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 4 Jan 2012 19:53:22 -0800 Subject: [PATCH] AfterRename will now call AfterRename for each external notifier instead of OnRename.... C+P Fail. Properly fixes ND-7 --- NzbDrone.Core/Providers/ExternalNotificationProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NzbDrone.Core/Providers/ExternalNotificationProvider.cs b/NzbDrone.Core/Providers/ExternalNotificationProvider.cs index 1016deb25..110658482 100644 --- a/NzbDrone.Core/Providers/ExternalNotificationProvider.cs +++ b/NzbDrone.Core/Providers/ExternalNotificationProvider.cs @@ -113,7 +113,7 @@ namespace NzbDrone.Core.Providers { foreach (var notifier in _notifiers.Where(i => GetSettings(i.GetType()).Enable)) { - notifier.OnRename(message, series); + notifier.AfterRename(message, series); } } }