Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/afcbbf54c7b843db927bbaf316081f64d3393aba
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
6 additions and
3 deletions
@ -37,10 +37,11 @@ define(['app', 'Calendar/CalendarItemView'], function (app) {
getEvents : function ( start , end , callback ) {
var bbView = NzbDrone . Calendar . CalendarCollectionView . Instance ;
var startDate = Date . create ( start ) . format ( Date . ISO8601 _DATETIME ) ;
var endDate = Date . create ( end ) . format ( Date . ISO8601 _DATETIME ) ;
bbView . calendar . fetch ( {
data : { start : Date . create ( start ) . format ( Date. ISO8601 _DATETIME ) , end : Date . create ( end ) . format ( Date. ISO8601 _DATETIME ) } ,
data : { start : start Date, end : end Date } ,
success : function ( calendarCollection ) {
callback ( calendarCollection . toJSON ( ) ) ;
}
@ -46,7 +46,7 @@
< div class = "span12" >
< ul id = "main-menu" >
< li > < a href = "/" > < i class = "icon-film" > < / i > < br > Series< / a > < / li >
< li > < a href = "/ upcoming "> < i class = "icon-calendar" > < / i > < br > Calendar< / a > < / li >
< li > < a href = "/ calendar "> < i class = "icon-calendar" > < / i > < br > Calendar< / a > < / li >
< li > < span class = "label label-important pull-right" > 08< / span > < a href = "history" > < i class = "icon-time" > < / i > < br > History< / a > < / li >
< li > < span class = "label label-important pull-right" > 04< / span > < a href = "missing" > < i class = "icon-folder-open" > < / i > < br > Missing< / a > < / li >
< li > < a href = "settings" > < i class = "icon-cogs" > < / i > < br > Settings< / a > < / li >
@ -99,6 +99,8 @@ namespace NzbDrone.Core.Providers
{
episode . AirDate = null ;
}
episodes . Add ( episode ) ;
}
return episodes ;