Revert loopbackWithMute to loopback (#1155)

apparently loopbackWithMute does not mute your own app like initially assumed but rather mutes the system audio for the user
This commit is contained in:
Glitchtest
2025-04-17 17:23:42 -04:00
committed by GitHub
parent 7bf05bd907
commit c7d830c57c

View File

@@ -77,7 +77,7 @@ export function registerScreenShareHandler() {
const streams: Streams = {
video: source
};
if (choice.audio && process.platform === "win32") streams.audio = "loopbackWithMute";
if (choice.audio && process.platform === "win32") streams.audio = "loopback";
callback(streams);
});