Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/blame/commit/c5ae38638a23f547beaf7f8435245b60d570c3fb/UI/Handlebars/Handlebars.Debug.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/UI/Handlebars/Handlebars.Debug.js

12 lines
268 B

'use strict';
define(
[
'handlebars'
], function (Handlebars) {
Handlebars.registerHelper("debug", function () {
console.group('Handlebar context');
console.log(this);
console.groupEnd();
});
});