From a38877d984cd7dd3fd067ea6274e2daf3378da44 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Wed, 3 Aug 2016 13:01:32 +0100 Subject: [PATCH] Small changes, we will actually see the episode cacher on the scheduled jobs page now --- .../SettingModels/ScheduledJobsSettings.cs | 1 + PlexRequests.Services/Jobs/JobNames.cs | 2 +- PlexRequests.UI/Views/Requests/Index.cshtml | 14 +++++++------- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/PlexRequests.Core/SettingModels/ScheduledJobsSettings.cs b/PlexRequests.Core/SettingModels/ScheduledJobsSettings.cs index e4e7b72ef..a39a570c2 100644 --- a/PlexRequests.Core/SettingModels/ScheduledJobsSettings.cs +++ b/PlexRequests.Core/SettingModels/ScheduledJobsSettings.cs @@ -39,6 +39,7 @@ namespace PlexRequests.Core.SettingModels UserRequestLimitResetter = 12; PlexEpisodeCacher = 20; } + public int PlexAvailabilityChecker { get; set; } public int SickRageCacher { get; set; } public int SonarrCacher { get; set; } diff --git a/PlexRequests.Services/Jobs/JobNames.cs b/PlexRequests.Services/Jobs/JobNames.cs index 3027207d8..29418ee96 100644 --- a/PlexRequests.Services/Jobs/JobNames.cs +++ b/PlexRequests.Services/Jobs/JobNames.cs @@ -35,6 +35,6 @@ namespace PlexRequests.Services.Jobs public const string PlexChecker = "Plex Availability Cacher"; public const string StoreCleanup = "Database Cleanup"; public const string RequestLimitReset = "Request Limit Reset"; - public const string EpisodeCacher = "Request Limit Reset"; + public const string EpisodeCacher = "Plex Episode Cacher"; } } \ No newline at end of file diff --git a/PlexRequests.UI/Views/Requests/Index.cshtml b/PlexRequests.UI/Views/Requests/Index.cshtml index 9c6b7f7fe..b0e1402ad 100644 --- a/PlexRequests.UI/Views/Requests/Index.cshtml +++ b/PlexRequests.UI/Views/Requests/Index.cshtml @@ -136,13 +136,13 @@ {{#if episodes}}
{{#each episodes}} - Season: {{this.seasonNumber}} -
- Episodes Requested: - {{#each this.episodes}} - {{this}} - {{/each}} -
+ Season: {{this.seasonNumber}} +
+ Episodes Requested: + {{#each this.episodes}} + {{this}} + {{/each}} +
{{/each}}
{{/if}}