Skip to content

Commit cab7624

Browse files
Merge pull request #81 from THEOplayer/millicast-abr-selection
Add support for MBR Millicast streams
2 parents 43fdfb6 + b6aedec commit cab7624

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

react/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ sidebar_custom_props: { 'icon': '📰' }
1515
> - 🏠 Internal
1616
> - 💅 Polish
1717
18+
## Unreleased
19+
20+
- 🚀 Added support for MBR Millicast streams. ([#81](https://github.com/THEOplayer/web-ui/pull/81))
21+
1822
## v1.9.2 (2024-11-20)
1923

2024
- 🏠 See changes to [Open Video UI for Web v1.9.2](https://github.com/THEOplayer/web-ui/blob/v1.9.2/CHANGELOG.md)

src/components/QualityRadioGroup.ts

+2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ export class QualityRadioGroup extends StateReceiverMixin(HTMLElement, ['player'
8484
if (this._track === track) {
8585
return;
8686
}
87+
this._track?.removeEventListener('update', this._update);
8788
this._track = track;
89+
this._track?.addEventListener('update', this._update);
8890
this._update();
8991
};
9092

0 commit comments

Comments
 (0)