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 {