mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-23 13:27:03 -04:00
VoiceMessages: properly respect user's microphone choice (#2602)
This commit is contained in:
parent
e9e789be70
commit
76f6912511
3 changed files with 6 additions and 0 deletions
|
@ -21,6 +21,7 @@ import { Button, showToast, Toasts, useState } from "@webpack/common";
|
|||
|
||||
import type { VoiceRecorder } from ".";
|
||||
import { settings } from "./settings";
|
||||
import { MediaEngineStore } from "./utils";
|
||||
|
||||
const Native = VencordNative.pluginHelpers.VoiceMessages as PluginNative<typeof import("./native")>;
|
||||
|
||||
|
@ -41,6 +42,7 @@ export const VoiceRecorderDesktop: VoiceRecorder = ({ setAudioBlob, onRecordingC
|
|||
{
|
||||
echoCancellation: settings.store.echoCancellation,
|
||||
noiseCancellation: settings.store.noiseSuppression,
|
||||
deviceId: MediaEngineStore.getInputDeviceId(),
|
||||
},
|
||||
(success: boolean) => {
|
||||
if (success)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue