Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/800fa429829f6abd06968dc549ec94f62e9861d0
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
19 additions and
2 deletions
@ -22,15 +22,32 @@ namespace NzbDrone.Api.Calendar
private Response GetCalendarFeed ( )
{
var start = DateTime . Today . AddDays ( - 7 ) ;
var end = DateTime . Today . AddDays ( 28 ) ;
var pastDays = 7 ;
var futureDays = 28 ;
var start = DateTime . Today . AddDays ( - pastDays ) ;
var end = DateTime . Today . AddDays ( futureDays ) ;
// TODO: Remove start/end parameters in v3, they don't work well for iCal
var queryStart = Request . Query . Start ;
var queryEnd = Request . Query . End ;
var queryPastDays = Request . Query . PastDays ;
var queryFutureDays = Request . Query . FutureDays ;
if ( queryStart . HasValue ) start = DateTime . Parse ( queryStart . Value ) ;
if ( queryEnd . HasValue ) end = DateTime . Parse ( queryEnd . Value ) ;
if ( queryPastDays . HasValue )
{
pastDays = int . Parse ( queryPastDays . Value ) ;
start = DateTime . Today . AddDays ( - pastDays ) ;
}
if ( queryFutureDays . HasValue )
{
futureDays = int . Parse ( queryFutureDays . Value ) ;
end = DateTime . Today . AddDays ( futureDays ) ;
}
var episodes = _episodeService . EpisodesBetweenDates ( start , end , false ) ;
var icalCalendar = new iCalendar ( ) ;