From 778245dd1c7b98fef4454ab6213aa0e09b3b59f5 Mon Sep 17 00:00:00 2001 From: Alex X Date: Sun, 12 May 2024 15:56:56 +0300 Subject: [PATCH] Set default max-bundle for video-rtc.js viewer --- www/video-rtc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/www/video-rtc.js b/www/video-rtc.js index 273bc099..7832e105 100644 --- a/www/video-rtc.js +++ b/www/video-rtc.js @@ -70,6 +70,7 @@ export class VideoRTC extends HTMLElement { * @type {RTCConfiguration} */ this.pcConfig = { + bundlePolicy: 'max-bundle', iceServers: [{urls: 'stun:stun.l.google.com:19302'}], sdpSemantics: 'unified-plan', // important for Chromecast 1 };