1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00

Fixed: Infinite spinner when toggling seasons on multiple series from season pass

This commit is contained in:
Mark McDowall 2019-08-16 22:46:12 -07:00
parent ec6d407fbb
commit 665d536481

View File

@ -17,7 +17,7 @@ import { updateItem } from './baseActions';
const MONITOR_TIMEOUT = 1000;
const seasonsToUpdate = {};
let seasonMonitorToggleTimeout = null;
const seasonMonitorToggleTimeouts = {};
//
// Variables
@ -271,16 +271,19 @@ export const actionHandlers = handleThunks({
},
[TOGGLE_SEASON_MONITORED]: function(getState, payload, dispatch) {
if (seasonMonitorToggleTimeout) {
seasonMonitorToggleTimeout = clearTimeout(seasonMonitorToggleTimeout);
}
const {
seriesId: id,
seasonNumber,
monitored
} = payload;
const seasonMonitorToggleTimeout = seasonMonitorToggleTimeouts[id];
if (seasonMonitorToggleTimeout) {
clearTimeout(seasonMonitorToggleTimeout);
delete seasonMonitorToggleTimeouts[id];
}
const series = getState().series.items.find((s) => s.id === id);
const seasons = _.cloneDeep(series.seasons);
const season = seasons.find((s) => s.seasonNumber === seasonNumber);
@ -296,7 +299,7 @@ export const actionHandlers = handleThunks({
seasonsToUpdate[seasonNumber] = monitored;
season.monitored = monitored;
seasonMonitorToggleTimeout = setTimeout(() => {
seasonMonitorToggleTimeouts[id] = setTimeout(() => {
createAjaxRequest({
url: `/series/${id}`,
method: 'PUT',