We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18883d5 commit ef7c367Copy full SHA for ef7c367
src/playbackstrategy/msestrategy.js
@@ -518,6 +518,9 @@ function MSEStrategy(
518
mediaPlayer.updateSettings(dashSettings)
519
mediaPlayer.initialize(mediaElement, null, true)
520
521
+ //Allow cookies to be sent with DVBReporting Requests
522
+ mediaPlayer.setXHRWithCredentialsForType("DVBReporting", true)
523
+
524
if (enableBroadcastMixAD) {
525
mediaPlayer.setInitialMediaSettingsFor("audio", {
526
role: "alternate",
src/playbackstrategy/msestrategy.test.js
@@ -59,6 +59,7 @@ const mockDashInstance = {
59
getCurrentTrackFor: jest.fn(),
60
setCurrentTrack: jest.fn(),
61
setInitialMediaSettingsFor: jest.fn(),
62
+ setXHRWithCredentialsForType: jest.fn(),
63
}
64
65
const mockDashMediaPlayer = {
0 commit comments