Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/blame/commit/f98002c576f379adf1457fa49bb5b24d6793952d/NzbDrone.Web/_backboneApp/JsLibraries/backbone.marionette.extend.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/NzbDrone.Web/_backboneApp/JsLibraries/backbone.marionette.extend.js

24 lines
673 B

_.extend(Marionette.TemplateCache.prototype, {
loadTemplate: function (templateId) {
var template;
console.log("Loading template '" + templateId + "'");
jQuery.ajax({
url: '_backboneApp//' + templateId + '.html',
async: false
}).done(function (data) {
template = data;
}).fail(function (data) {
console.log("couldn't load template " + this.templateId + " Error: " + data.statusText);
template = "<div class='alert alert-error'>Couldn't load template '" + templateId + "'. Status: " + data.statusText + "</div>";
});
return template;
}
});