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

12 lines
291 B

'use strict';
String.prototype.format = function () {
var args = arguments;
return this.replace(/{(\d+)}/g, function (match, number) {
if (typeof args[number] !== 'undefined') {
return args[number];
} else {
return match;
}
});
};