Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/src/commit/e856a31a4d0653c2e014b9513725fb0a48f0f386/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
222 B

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