mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Removed plex from the scheduled jobs ui
This commit is contained in:
parent
74066d0351
commit
2dfcef980e
2 changed files with 22 additions and 3 deletions
|
@ -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();
|
||||||
|
|
||||||
|
|
|
@ -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>();
|
||||||
|
|
||||||
|
|
||||||
|
@ -1158,7 +1160,24 @@ namespace Ombi.UI.Modules.Admin
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
dict.Add(j.Name,j.LastRun);
|
if (j.Name.Contains("Plex"))
|
||||||
|
{
|
||||||
|
if (plex.Enable)
|
||||||
|
{
|
||||||
|
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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue