Merge pull request #366 from robintown/chrome-android-sink

Fix crash when setting audio output on Chrome for Android
This commit is contained in:
Robin
2022-06-01 09:14:41 -04:00
committed by GitHub

View File

@@ -55,7 +55,8 @@ export function useMediaStream(stream, audioOutputDevice, mute = false) {
mediaRef.current !== undefined
) {
console.log(`useMediaStream setSinkId ${audioOutputDevice}`);
mediaRef.current.setSinkId(audioOutputDevice);
// Chrome for Android doesn't support this
mediaRef.current.setSinkId?.(audioOutputDevice);
}
}, [audioOutputDevice]);