diff --git a/website/src/components/PlayStorageAudio.tsx b/website/src/components/PlayStorageAudio.tsx index af1fd61..30d696f 100644 --- a/website/src/components/PlayStorageAudio.tsx +++ b/website/src/components/PlayStorageAudio.tsx @@ -1,6 +1,6 @@ export default function playStorageAudio(ts: number, callback: () => void) { if (!ts) return; - let audio = new Audio(`https://storage.lingdocs.com/${ts}.mp3`); + let audio = new Audio(`https://storage.lingdocs.com/audio/${ts}.mp3`); audio.addEventListener("ended", () => { callback(); audio.remove();