Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/9160343a51632e4aa1356a26bb57faed8d84ba44/UI/Settings/Indexers/Collection.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Settings/Indexers/Collection.js

8 lines
263 B

"use strict";
define(['app', 'Settings/Indexers/Model'], function () {
NzbDrone.Settings.Indexers.Collection = Backbone.Collection.extend({
url : NzbDrone.Constants.ApiRoot + '/indexer',
model: NzbDrone.Settings.Indexers.Model
});
});