Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/b34879b4f6712ad0752ff8b448800b06b00386bf
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
10 additions and
2 deletions
@ -14,15 +14,23 @@ module.exports = Backgrid.Cell.extend({
var self = this ;
this . $el . html ( '<i class="icon-sonarr-spinner fa-spin" />') ;
this . $el . html ( '<i class="icon-sonarr-spinner fa-spin" title="Adding to download queue" />') ;
//Using success callback instead of promise so it
//gets called before the sync event is triggered
this . model . save ( null , {
var promise = this . model . save ( null , {
success : function ( ) {
self . model . set ( 'queued' , true ) ;
}
} ) ;
promise . fail ( function ( xhr ) {
if ( xhr . responseJSON && xhr . responseJSON . message ) {
self . $el . html ( '<i class="icon-sonarr-download-failed" title="{0}" />' . format ( xhr . responseJSON . message ) ) ;
} else {
self . $el . html ( '<i class="icon-sonarr-download-failed" title="Failed to add to download queue" />' ) ;
}
} ) ;
} ,
render : function ( ) {