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/7c324b7cd2ffc3413a7d837b813e762a59935a86/UI/Handlebars/Helpers/Quality.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Handlebars/Helpers/Quality.js

22 lines
544 B

'use strict';
define(
[
'handlebars',
'Quality/QualityProfileCollection',
'underscore'
], function (Handlebars, QualityProfileCollection, _) {
Handlebars.registerHelper('qualityProfile', function (profileId) {
var profile = QualityProfileCollection.get(profileId);
if (profile) {
return new Handlebars.SafeString('<span class="label quality-profile-label">' + profile.get("name") + '</span>');
}
return undefined;
});
});