AfterRename will now call AfterRename for each external notifier instead of OnRename.... C+P Fail.
Properly fixes ND-7
This commit is contained in:
parent
e734bb6ecb
commit
62da0568c0
|
@ -113,7 +113,7 @@ namespace NzbDrone.Core.Providers
|
||||||
{
|
{
|
||||||
foreach (var notifier in _notifiers.Where(i => GetSettings(i.GetType()).Enable))
|
foreach (var notifier in _notifiers.Where(i => GetSettings(i.GetType()).Enable))
|
||||||
{
|
{
|
||||||
notifier.OnRename(message, series);
|
notifier.AfterRename(message, series);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue