Skip to content

Commit

Permalink
fix(FEC-8588): large play button displayed for a sec before the next …
Browse files Browse the repository at this point in the history
…item is playing (#172)

any play next means `autoplay`
  • Loading branch information
yairans authored Nov 13, 2018
1 parent 263f915 commit cc2f8f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/playlist/playlist-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class PlaylistManager {
if (next.item) {
this._setItem(next.item, next.index).then(() => {
this._eventManager.listenOnce(this._player, PlaylistEventType.PLAYLIST_ITEM_CHANGED, () => {
this._player.configure({playback: {autoplay: this._options.autoContinue}});
this._player.configure({playback: {autoplay: true}});
});
});
}
Expand Down

0 comments on commit cc2f8f2

Please sign in to comment.