Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/3ab0b17379fba69206d01dcd64ef796cc445da5e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
3 deletions
@ -17,7 +17,7 @@ var view = Marionette.ItemView.extend({
} ,
events : {
'click .x-remove' : '_remove Series '
'click .x-remove' : '_remove Movie '
} ,
initialize : function ( ) {
@ -42,7 +42,7 @@ var view = Marionette.ItemView.extend({
vent . trigger ( vent . Commands . CloseModalCommand ) ;
} ,
_remove Series : function ( ) {
_remove Movie : function ( ) {
vent . trigger ( vent . Commands . DeleteMovieCommand , { movie : this . model } ) ;
}
} ) ;
@ -13,8 +13,9 @@ vent.Events = {
vent . Commands = {
EditSeriesCommand : 'EditSeriesCommand' ,
EditMovieCommand : 'EditMovieCommand' ,
EditFileCommand : "EditFileCommand" ,
EditFileCommand : "EditFileCommand" ,
DeleteSeriesCommand : 'DeleteSeriesCommand' ,
DeleteMovieCommand : 'DeleteMovieCommand' ,
OpenModalCommand : 'OpenModalCommand' ,
CloseModalCommand : 'CloseModalCommand' ,
OpenModal2Command : 'OpenModal2Command' ,