mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-25 01:02:05 +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))
|
||||
{
|
||||
notifier.OnRename(message, series);
|
||||
notifier.AfterRename(message, series);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue