Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/187064101c60868a20dda96eba754bbeab1d011d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
7 additions and
14 deletions
@ -31,20 +31,9 @@ gulp.task('less', function() {
if ( phantom ) {
src = [
paths . src . content + 'bootstrap.less' ,
paths . src . content + 'theme.less' ,
paths . src . content + 'sonarr.less' ,
paths . src . content + 'overrides.less' ,
paths . src . root + 'Series/series.less' ,
paths . src . root + 'Activity/activity.less' ,
paths . src . root + 'AddSeries/AddSeries.less' ,
paths . src . root + 'Calendar/calendar.less' ,
paths . src . root + 'Cells/cells.less' ,
paths . src . root + 'ManualImport/manualimport.less' ,
paths . src . root + 'Settings/settings.less' ,
paths . src . root + 'System/Logs/logs.less' ,
paths . src . root + 'System/Update/update.less' ,
paths . src . root + 'System/Info/info.less'
paths . src . content + 'Bootstrap/bootstrap.less' ,
paths . src . content + 'Vendor/vendor.less' ,
paths . src . content + 'sonarr.less'
] ;
}
@ -7,6 +7,10 @@ var stripBom = function (dest) {
. pipe ( stripbom ( { showLog : false } ) )
. pipe ( gulp . dest ( dest ) ) ;
gulp . src ( paths . src . less )
. pipe ( stripbom ( { showLog : false } ) )
. pipe ( gulp . dest ( dest ) ) ;
gulp . src ( paths . src . templates )
. pipe ( stripbom ( { showLog : false } ) )
. pipe ( gulp . dest ( dest ) ) ;