From c67633b96947d28f10845a5c706067d61a752424 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Delattre?= Date: Sun, 12 May 2019 11:18:49 +0200 Subject: [PATCH] Fix invalid function name --- frontend/js/components/shows/details.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/js/components/shows/details.js b/frontend/js/components/shows/details.js index 3e6775d..f346eca 100644 --- a/frontend/js/components/shows/details.js +++ b/frontend/js/components/shows/details.js @@ -3,7 +3,7 @@ import { connect } from "react-redux" import { bindActionCreators } from "redux" import { addTorrent } from "../../actions/torrents" import { refreshSubtitles } from "../../actions/subtitles" -import { addShowToWishlist, deleteShowFromWishlist, getEpisodeDetails, updateShowDetails } from "../../actions/shows" +import { addShowToWishlist, deleteShowFromWishlist, getEpisodeDetails, fetchShowDetails } from "../../actions/shows" import Loader from "../loader/loader" import DownloadButton from "../buttons/download" @@ -22,7 +22,7 @@ function mapStateToProps(state) { } const mapDispatchToProps = (dispatch) => bindActionCreators({addTorrent, addShowToWishlist, deleteShowFromWishlist, - updateShowDetails, getEpisodeDetails, + fetchShowDetails, getEpisodeDetails, refreshSubtitles }, dispatch) class ShowDetails extends React.Component {