1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-23 22:51:19 +00:00

Upcoming now only shows 3 days of episodes

New: Upcoming shows today, tomorrow and the day
This commit is contained in:
Mark McDowall 2013-10-03 19:25:07 -07:00
parent 6f27d8c33f
commit a91d21fba1

View file

@ -23,8 +23,8 @@ namespace NzbDrone.Api.Calendar
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;