Fixed: Don't trigger SceneMapping update and Housekeeping right on the startup event.

This commit is contained in:
Taloth Saldono 2016-03-01 23:50:09 +01:00
parent 55e870f295
commit e5de7fb8cf
3 changed files with 2 additions and 14 deletions

View file

@ -21,7 +21,6 @@ namespace NzbDrone.Core.DataAugmentation.Scene
}
public class SceneMappingService : ISceneMappingService,
IHandleAsync<ApplicationStartedEvent>,
IHandle<SeriesRefreshStartingEvent>,
IExecute<UpdateSceneMappingCommand>
{
@ -204,11 +203,6 @@ namespace NzbDrone.Core.DataAugmentation.Scene
return titles.Where(title => title.All(c => c <= 255)).ToList();
}
public void HandleAsync(ApplicationStartedEvent message)
{
UpdateMappings();
}
public void Handle(SeriesRefreshStartingEvent message)
{
UpdateMappings();