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

10 lines
210 B

var gulp = require('gulp');
var clean = require('gulp-clean');
var paths = require('./paths');
gulp.task('clean', function () {
return gulp.src(paths.dest.root, {read: false})
.pipe(clean());
});