Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/blame/commit/ca71025bca3070d2321cdec6d85030e4d8ba2499/UI/Mixins/backbone.marionette.templates.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/UI/Mixins/backbone.marionette.templat...

25 lines
572 B

"use strict";
Marionette.TemplateCache.get = function (templateId) {
var templateKey = templateId.toLowerCase();
var templateFunction = window.Templates[templateKey];
if (!templateFunction) {
throw 'couldn\'t find pre-compiled template ' + templateKey;
}
return function (data) {
try {
return templateFunction(data);
}
catch (error) {
console.error('template render failed for ' + templateKey + ' ' + error);
console.error(data);
throw error;
}
};
};