Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/src/commit/a8b9a47f5f36144b281e68c44219950a584f5057/gulp/clean.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/gulp/clean.js

9 lines
158 B

var gulp = require('gulp');
var del = require('del');
var paths = require('./paths');
gulp.task('clean', function(cb) {
del([paths.dest.root], cb);
});