Removed plex from the scheduled jobs ui

This commit is contained in:
tidusjar 2017-02-03 20:45:55 +00:00
parent 74066d0351
commit 2dfcef980e
2 changed files with 22 additions and 3 deletions

View file

@ -305,8 +305,8 @@ namespace Ombi.UI.Jobs
var embyEpisode = var embyEpisode =
TriggerBuilder.Create() TriggerBuilder.Create()
.WithIdentity("EmbyEpisodeCacher", "Emby") .WithIdentity("EmbyEpisodeCacher", "Emby")
.StartNow() //.StartNow()
//.StartAt(DateBuilder.FutureDate(10, IntervalUnit.Minute)) .StartAt(DateBuilder.FutureDate(10, IntervalUnit.Minute))
.WithSimpleSchedule(x => x.WithIntervalInHours(s.EmbyEpisodeCacher).RepeatForever()) .WithSimpleSchedule(x => x.WithIntervalInHours(s.EmbyEpisodeCacher).RepeatForever())
.Build(); .Build();

View file

@ -1146,6 +1146,8 @@ namespace Ombi.UI.Modules.Admin
var emby = await EmbySettings.GetSettingsAsync(); var emby = await EmbySettings.GetSettingsAsync();
var plex = await PlexService.GetSettingsAsync(); var plex = await PlexService.GetSettingsAsync();
var dict = new Dictionary<string, DateTime>(); var dict = new Dictionary<string, DateTime>();
@ -1157,9 +1159,26 @@ namespace Ombi.UI.Modules.Admin
// We already have the key... Somehow, we should have never got this record. // We already have the key... Somehow, we should have never got this record.
} }
else else
{
if (j.Name.Contains("Plex"))
{
if (plex.Enable)
{ {
dict.Add(j.Name, j.LastRun); dict.Add(j.Name, j.LastRun);
} }
}
else if (j.Name.Contains("Emby"))
{
if (emby.Enable)
{
dict.Add(j.Name, j.LastRun);
}
}
else
{
dict.Add(j.Name, j.LastRun);
}
}
} }