We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72cba52 commit 40ca5d6Copy full SHA for 40ca5d6
src/ui/match/viewer-2d/audio/load-audio.ts
@@ -7,6 +7,6 @@ export async function loadAudio(audioFilePath: string) {
7
audio.addEventListener('loadedmetadata', () => {
8
resolve(audio);
9
});
10
- audio.src = `file://${audioFilePath}`;
+ audio.src = `file://${audioFilePath.replaceAll('#', '%23')}`;
11
12
}
0 commit comments