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

10 lines
377 B

'use strict';
define(['app', 'Settings/Indexers/ItemView'], function (app) {
NzbDrone.Settings.Indexers.CollectionView = Backbone.Marionette.CompositeView.extend({
itemView : NzbDrone.Settings.Indexers.ItemView,
itemViewContainer : '#x-indexers',
template : 'Settings/Indexers/CollectionTemplate'
});
});