Skip to content

Commit

Permalink
fix: πŸ› Fixed broken shuffle
Browse files Browse the repository at this point in the history
  • Loading branch information
EricLambrecht committed Feb 6, 2019
1 parent 36b3e6e commit 1e006c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/playlist-modifications/AbstractShuffle.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Rearranger from './Rearranger';

export default class AbstractShuffle extends Rearranger {
static rearrange(playlist, options = {}) {
return this.sort(playlist, options);
return this.shuffle(playlist, options);
}

/**
Expand Down

0 comments on commit 1e006c7

Please sign in to comment.