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/73f34592649fedc20903e7d3e1d2694a84422d53/UI/Quality/QualityProfileTemplateHelper.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Quality/QualityProfileTemplateHelpe...

11 lines
400 B

'use strict';
define(['app', 'Quality/QualityProfileCollection','handlebars'], function (app, qualityProfiles,Handlebars) {
Handlebars.registerHelper('qualityProfileSelection', function () {
var templateFunction = Marionette.TemplateCache.get('Quality/QualityProfileSelectionTemplate');
return new Handlebars.SafeString(templateFunction(qualityProfiles.toJSON()));
});
});