Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/39bb2ce80a77b8e92fc46228b4ab3fe7cf4f7387
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
13 additions and
1 deletions
@ -2,17 +2,29 @@
define (
[
'underscore' ,
'marionette' ,
'Calendar/UpcomingCollection' ,
'Calendar/UpcomingItemView' ,
'Mixins/backbone.signalr.mixin'
] , function ( Marionette, UpcomingCollection , UpcomingItemView ) {
] , function ( _, Marionette, UpcomingCollection , UpcomingItemView ) {
return Marionette . CollectionView . extend ( {
itemView : UpcomingItemView ,
initialize : function ( ) {
this . collection = new UpcomingCollection ( ) . bindSignalR ( { updateOnly : true } ) ;
this . collection . fetch ( ) ;
this . _fetchCollection = _ . bind ( this . _fetchCollection , this ) ;
this . timer = window . setInterval ( this . _fetchCollection , 60 * 60 * 1000 ) ;
} ,
onClose : function ( ) {
window . clearInterval ( this . timer ) ;
} ,
_fetchCollection : function ( ) {
this . collection . fetch ( ) ;
}
} ) ;
} ) ;