Skip to content

Commit ada1a75

Browse files
authored
fix(electron): test audio path changed in vite (#1765)
1 parent 6d0aba3 commit ada1a75

File tree

1 file changed

+19
-1
lines changed
  • desktop/renderer-app/src/pages/DeviceCheckPages/SpeakerCheckPage

1 file changed

+19
-1
lines changed

desktop/renderer-app/src/pages/DeviceCheckPages/SpeakerCheckPage/index.tsx

+19-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,13 @@ export const SpeakerCheckPage = withFlatServices("videoChat")(
4949

5050
useEffect(() => {
5151
if (currentDeviceID && isPlaying) {
52-
rtc.startSpeakerTest(window.node.path.join(runtime.assetsPath, audioTestMP3));
52+
// Vite 3 returns a file url in production,
53+
// we need to convert it to an absolute path to feed it to rtc.
54+
if (audioTestMP3.startsWith("file://")) {
55+
rtc.startSpeakerTest(fileURLToPath(audioTestMP3));
56+
} else {
57+
rtc.startSpeakerTest(window.node.path.join(runtime.assetsPath, audioTestMP3));
58+
}
5359
return () => {
5460
rtc.stopSpeakerTest();
5561
};
@@ -128,3 +134,15 @@ export const SpeakerCheckPage = withFlatServices("videoChat")(
128134
}
129135
},
130136
);
137+
138+
// Note: electron does not have url.fileURLToPath internally for 'safety'
139+
// See https://www.electronjs.org/de/docs/latest/tutorial/sandbox#preload-scripts
140+
// So we have to implement our own.
141+
function fileURLToPath(url: string): string {
142+
let pathname = new URL(url).pathname;
143+
// if starts with a windows driver letter like "/C:/", strip the first slash
144+
if (/^\/\w:\//.test(pathname)) {
145+
pathname = pathname.slice(1);
146+
}
147+
return decodeURIComponent(pathname);
148+
}

0 commit comments

Comments
 (0)