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/927dbba945cc2d06832c1141646d053731c6fa92/UI/AddSeries/Existing/UnmappedFolderCollection.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/UI/AddSeries/Existing/UnmappedFolderCollection.js

24 lines
686 B

'use strict';
define(
[
'backbone',
'AddSeries/Existing/UnmappedFolderModel'
], function (Backbone, UnmappedFolderModel) {
return Backbone.Collection.extend({
model: UnmappedFolderModel,
importItems: function (rootFolderModel) {
this.reset();
var rootFolder = rootFolderModel;
_.each(rootFolderModel.get('unmappedFolders'), function (folder) {
this.push(new UnmappedFolderModel({
rootFolder: rootFolder,
folder : folder
}));
}, this);
}
});
});