Fixed: Calendar Missing Search Not Functional, Other Tweaks

This commit is contained in:
Qstick
2019-10-10 21:45:27 -04:00
parent 24fa77e7b2
commit 5eb7fe958f
6 changed files with 55 additions and 70 deletions

View File

@@ -39,9 +39,7 @@ export const defaultState = {
options: {
collapseMultipleEpisodes: false,
showEpisodeInformation: true,
showFinaleIcon: false,
showSpecialIcon: false,
showMovieInformation: true,
showCutoffUnmetIcon: false
},
@@ -346,11 +344,11 @@ export const actionHandlers = handleThunks({
},
[SEARCH_MISSING]: function(getState, payload, dispatch) {
const { episodeIds } = payload;
const { movieIds } = payload;
const commandPayload = {
name: commandNames.MOVIE_SEARCH,
episodeIds
movieIds
};
executeCommandHelper(commandPayload, dispatch).then((data) => {