removed all the jobs.

This commit is contained in:
Keivan Beigi 2013-05-06 17:39:33 -07:00
commit ec58b8b595
42 changed files with 122 additions and 1599 deletions

View file

@ -2,11 +2,12 @@
using System.Collections.Generic;
using System.Linq;
using NLog;
using NzbDrone.Common.Messaging;
using NzbDrone.Core.Tv;
namespace NzbDrone.Core.Providers
{
public class XemProvider
public class XemProvider :IExecute<UpdateXemMappings>
{
private readonly IEpisodeService _episodeService;
private readonly XemCommunicationProvider _xemCommunicationProvider;
@ -117,5 +118,10 @@ namespace NzbDrone.Core.Providers
_logger.WarnException("Error updating scene numbering mappings for: " + series, ex);
}
}
public void Execute(UpdateXemMappings message)
{
UpdateMappings();
}
}
}