Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/9ee535328f81a3e5cf6c0a0d59367e12176925f4 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Order Upcoming by date and time

pull/3113/head
markus101 11 years ago
parent 3d423f57f8
commit 9ee535328f

@ -51,7 +51,7 @@ namespace NzbDrone.Api.Calendar
var resources = ToListResource(() => _episodeService.EpisodesBetweenDates(start, end))
.LoadSubtype(e => e.SeriesId, _seriesRepository);
return resources.OrderBy(e => e.AirDate).ToList();
return resources.OrderBy(e => e.AirDateUtc).ToList();
}
public void Handle(EpisodeGrabbedEvent message)

Loading…
Cancel
Save