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

23 lines
546 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);
}
};
};