mirror of
https://github.com/Radarr/Radarr
synced 2024-12-24 17:01:38 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ public virtual void AfterRename(string message, Series series)
|
||||||
{
|
{
|
||||||
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 a new issue