Conform src/hooks/* code to strictNullChecks (#10460)

This commit is contained in:
Michael Telatynski 2023-03-27 14:45:46 +01:00 committed by GitHub
parent afb2cb93f2
commit 065e970325
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 4 deletions

View file

@ -42,7 +42,9 @@ export const useAudioDeviceSelection = (
if (shouldRequestPermissionsRef.current) {
shouldRequestPermissionsRef.current = false;
requestMediaPermissions(false).then((stream: MediaStream | undefined) => {
MediaDeviceHandler.getDevices().then(({ audioinput }) => {
MediaDeviceHandler.getDevices().then((devices) => {
if (!devices) return;
const { audioinput } = devices;
MediaDeviceHandler.getDefaultDevice(audioinput);
const deviceFromSettings = MediaDeviceHandler.getAudioInput();
const device =