Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/997dce288df6d3534b142c626418ff21c0bd9c88 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Increase fullCollection page size, update Refresh Library command

Tim Turner 8 years ago
parent 4d745d3600
commit 997dce288d

@ -47,10 +47,10 @@ module.exports = Marionette.Layout.extend({
cell : MovieTitleCell,
cellValue : 'this'
},
{
{
name: "downloadedQuality",
label: "Downloaded",
cell: DownloadedQualityCell,
cell: DownloadedQualityCell,
},
{
name : 'profileId',
@ -71,7 +71,7 @@ module.exports = Marionette.Layout.extend({
{
title : 'Update Library',
icon : 'icon-sonarr-refresh',
command : 'refreshseries',
command : 'refreshmovie',
successMessage : 'Library was updated!',
errorMessage : 'Library update failed!'
}

@ -2,6 +2,6 @@ var movieCollection = require('./MoviesCollection');
var fullCollection = movieCollection.clone();
fullCollection.bindSignalR();
fullCollection.state.pageSize = 10000;
fullCollection.state.pageSize = 100000;
fullCollection.fetch({reset : true});
module.exports = fullCollection;

Loading…
Cancel
Save