1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-22 16:24:17 +02:00
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;
}