File tree 1 file changed +19
-1
lines changed
desktop/renderer-app/src/pages/DeviceCheckPages/SpeakerCheckPage
1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,13 @@ export const SpeakerCheckPage = withFlatServices("videoChat")(
49
49
50
50
useEffect ( ( ) => {
51
51
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
+ }
53
59
return ( ) => {
54
60
rtc . stopSpeakerTest ( ) ;
55
61
} ;
@@ -128,3 +134,15 @@ export const SpeakerCheckPage = withFlatServices("videoChat")(
128
134
}
129
135
} ,
130
136
) ;
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
+ }
You can’t perform that action at this time.
0 commit comments