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/0a2ac32dfc2f52ead68d17cc16dbdab39fde72aa/UI/Handlebars/Helpers/Numbers.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/UI/Handlebars/Helpers/Numbers.js

11 lines
281 B

'use strict';
define(
[
'handlebars',
'Shared/FormatHelpers'
], function (Handlebars, FormatHelpers) {
Handlebars.registerHelper('Bytes', function (size) {
return new Handlebars.SafeString(FormatHelpers.Bytes(size));
});
});