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/283cd36db8810be5718b05e8f69a1c152350f371/UI/Handlebars/Helpers/Html.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/UI/Handlebars/Helpers/Html.js

21 lines
517 B

'use strict';
define(
[
'handlebars'
], function (Handlebars) {
var placeHolder = '/Content/Images/poster-dark.jpg';
window.NzbDrone.imageError = function (img) {
if (!img.src.contains(placeHolder)) {
img.src = placeHolder;
}
img.onerror = null;
};
Handlebars.registerHelper('defaultImg', function () {
return new Handlebars.SafeString('onerror=window.NzbDrone.imageError(this)');
});
});