This commit is contained in:
syuilo 2025-03-20 16:10:38 +09:00
parent 7f534a41a6
commit 71188b3463
6 changed files with 9 additions and 12 deletions

View file

@ -108,7 +108,7 @@ export async function loadAudio(url: string, options?: { useCache?: boolean; })
let response: Response;
try {
response = await fetch(url);
response = await window.fetch(url);
} catch (err) {
return;
}