Skip to content

Commit

Permalink
Merge pull request #81 from THEOplayer/millicast-abr-selection
Browse files Browse the repository at this point in the history
Add support for MBR Millicast streams
  • Loading branch information
MattiasBuelens authored Dec 3, 2024
2 parents 43fdfb6 + b6aedec commit cab7624
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ sidebar_custom_props: { 'icon': '📰' }
> - 🏠 Internal
> - 💅 Polish
## Unreleased

- 🚀 Added support for MBR Millicast streams. ([#81](https://github.com/THEOplayer/web-ui/pull/81))

## v1.9.2 (2024-11-20)

- 🏠 See changes to [Open Video UI for Web v1.9.2](https://github.com/THEOplayer/web-ui/blob/v1.9.2/CHANGELOG.md)
Expand Down
2 changes: 2 additions & 0 deletions src/components/QualityRadioGroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ export class QualityRadioGroup extends StateReceiverMixin(HTMLElement, ['player'
if (this._track === track) {
return;
}
this._track?.removeEventListener('update', this._update);
this._track = track;
this._track?.addEventListener('update', this._update);
this._update();
};

Expand Down

0 comments on commit cab7624

Please sign in to comment.