Skip to content

Commit

Permalink
Fix stream delay being ignored
Browse files Browse the repository at this point in the history
Regression of 7421139.
  • Loading branch information
beheh committed Feb 8, 2018
1 parent 6fd132d commit 0771a47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Fixed
- Fixed stream delay being ignored

## [0.2.1] - 2018-02-08
### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/viewer/Root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class Root extends React.Component<RootProps & TwitchExtProps, RootState> {

componentWillReceiveProps(props: RootProps & TwitchExtProps) {
if (this.props.twitchExtContext) {
this.queue.delay = 0;
this.queue.delay = this.props.twitchExtContext.hlsLatencyBroadcaster;
}
}

Expand Down

0 comments on commit 0771a47

Please sign in to comment.