Skip to content
This repository has been archived by the owner on May 26, 2018. It is now read-only.

Commit

Permalink
Fix replay stutter for youtube (#848)
Browse files Browse the repository at this point in the history
- fixes #836
- reopends #782
- explaination: #836 (comment)
  • Loading branch information
Dave Justice committed May 12, 2017
1 parent ec83cfa commit 3ccaa55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/player-view.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ module.exports = class Player extends React.Component {

onEnded() {
if (this.props.queue.length === 1) {
window.AppData.set({exited: true, playing: false});
window.AppData.set({exited: true});
} else {
// Force a render before we get the update response from
// 'track-ended' event. This is to prevent a bug where
Expand Down

0 comments on commit 3ccaa55

Please sign in to comment.