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/cdee4916f1336df394cdae76e36abe4c832e9f19/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());
});