mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Upcoming now only shows 3 days of episodes
New: Upcoming shows today, tomorrow and the day
This commit is contained in:
parent
6f27d8c33f
commit
a91d21fba1
@ -23,8 +23,8 @@ public CalendarModule(IEpisodeService episodeService, SeriesRepository seriesRep
|
||||
|
||||
private List<EpisodeResource> GetPaged()
|
||||
{
|
||||
var start = DateTime.Today.AddDays(-1);
|
||||
var end = DateTime.Today.AddDays(7);
|
||||
var start = DateTime.Today;
|
||||
var end = DateTime.Today.AddDays(2);
|
||||
|
||||
var queryStart = Request.Query.Start;
|
||||
var queryEnd = Request.Query.End;
|
||||
|
Loading…
Reference in New Issue
Block a user