ExternalNotification now has AfterRename, to notify (XBMC) after all episodes have been renamed.

This commit is contained in:
Mark McDowall 2012-01-04 19:40:25 -08:00
commit e734bb6ecb
10 changed files with 75 additions and 5 deletions

View file

@ -39,6 +39,12 @@ namespace NzbDrone.Core.Providers.ExternalNotification
public override void OnRename(string message, Series series)
{
}
public override void AfterRename(string message, Series series)
{
}
}
}