mirror of
https://github.com/Radarr/Radarr
synced 2025-02-24 23:23:21 +00:00
Increase fullCollection page size, update Refresh Library command
This commit is contained in:
parent
4d745d3600
commit
997dce288d
2 changed files with 4 additions and 4 deletions
|
@ -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…
Reference in a new issue