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

44 lines
1.3 KiB

12 years ago
'use strict';
define(
[
'marionette',
'AddSeries/AddSeriesView',
12 years ago
'AddSeries/Existing/UnmappedFolderCollection'
], function (Marionette, AddSeriesView, UnmappedFolderCollection) {
12 years ago
return Marionette.CollectionView.extend({
itemView: AddSeriesView,
12 years ago
initialize: function () {
this.collection = new UnmappedFolderCollection();
this.collection.importItems(this.model);
},
showCollection: function () {
this._showAndSearch(0);
},
_showAndSearch: function (index) {
var self = this;
12 years ago
var model = this.collection.at(index);
12 years ago
if (model) {
var currentIndex = index;
var folderName = model.get('folder').name;
12 years ago
this.addItemView(model, this.getItemView(), index);
this.children.findByModel(model)
.search({term: folderName})
.always((function () {
self._showAndSearch(currentIndex + 1);
}));
12 years ago
}
},
itemViewOptions: {
isExisting: true
12 years ago
}
});
});