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/de607e207b8c9baed0ba9769d6b87ce8a39bfded/UI/Settings/Indexers/Collection.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/UI/Settings/Indexers/Collection.js

12 lines
282 B

'use strict';
define(
[
12 years ago
'Settings/Indexers/Model',
'Form/FormBuilder'
], function (IndexerModel) {
return Backbone.Collection.extend({
url : window.NzbDrone.ApiRoot + '/indexer',
model: IndexerModel
});
});