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/272cc93bd215605f7c230ca15bf300bfaf6f9a4b/UI/Handlebars/debug.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/UI/Handlebars/debug.js

19 lines
447 B

'use strict';
define({
register: function (Handlebars) {
Handlebars.registerHelper("debug", function (optionalValue) {
console.group('Handlebar context');
console.log(this);
if (optionalValue) {
console.group('optional values');
console.log('optinal values');
console.groupEnd();
}
console.groupEnd();
});
}
});