Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/14f57d655a2915c932182cb65643ab5e4ebb593a?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
9 additions and
4 deletions
@ -50,15 +50,15 @@ define(
var title = 'Episode downloaded' ;
var title = 'Episode downloaded' ;
if ( quality . proper ) {
if ( quality . proper ) {
title += ' [PROPER] - {0}' . format ( size ) ;
title += ' [PROPER]' ;
this . $el . html ( '<span class="badge badge-info" title="{0}">{1}</span>' . format ( title , quality . quality . name ) ) ;
}
}
else {
if ( size !== '' ) {
title += ' - {0}' . format ( size ) ;
title += ' - {0}' . format ( size ) ;
this . $el . html ( '<span class="badge badge-inverse" title="{0}">{1}</span>' . format ( title , quality . quality . name ) ) ;
}
}
this . $el . html ( '<span class="badge badge-inverse" title="{0}">{1}</span>' . format ( title , quality . quality . name ) ) ;
return ;
return ;
}
}
@ -10,6 +10,11 @@ define(
bytes : function ( sourceSize ) {
bytes : function ( sourceSize ) {
var size = Number ( sourceSize ) ;
var size = Number ( sourceSize ) ;
if ( isNaN ( size ) ) {
return '' ;
}
return Filesize ( size , { base : 2 , round : 1 } ) ;
return Filesize ( size , { base : 2 , round : 1 } ) ;
} ,
} ,