Clicking on play button next to song title on playlist page was not starting playback when nothing was already playing
This commit is contained in:
parent
8fffb9f565
commit
5f6eec6330
@ -16,8 +16,13 @@ import Playlist from "../components/Playlist";
|
||||
*/
|
||||
class PlaylistPage extends Component {
|
||||
render() {
|
||||
const actions = this.props.actions;
|
||||
const playAction = function (id) {
|
||||
actions.jumpToSong(id);
|
||||
actions.togglePlaying(true);
|
||||
};
|
||||
return (
|
||||
<Playlist playAction={this.props.actions.jumpToSong} playNextAction={null} flushAction={this.props.actions.stopPlayback} songs={this.props.songsList} currentIndex={this.props.currentIndex} />
|
||||
<Playlist playAction={playAction} playNextAction={null} flushAction={actions.stopPlayback} songs={this.props.songsList} currentIndex={this.props.currentIndex} />
|
||||
);
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user