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

20 lines
528 B

'use strict';
define(
[
'handlebars',
'Shared/FormatHelpers'
], function (Handlebars, FormatHelpers) {
Handlebars.registerHelper('Bytes', function (size) {
return new Handlebars.SafeString(FormatHelpers.bytes(size));
});
Handlebars.registerHelper('Pad2', function (input) {
return FormatHelpers.pad(input, 2);
});
Handlebars.registerHelper('Number', function (input) {
return FormatHelpers.number(input);
});
});