Mass Drop Plugins

This commit is contained in:
thororen1234 2025-04-08 09:35:47 -04:00
parent 2a98a52f1d
commit cb494a15c3
No known key found for this signature in database
34 changed files with 9 additions and 8285 deletions

View file

@ -66,8 +66,8 @@ async function addListeners(audioElement: HTMLAudioElement, url: string, parentB
const madeURL = new URL(url);
madeURL.searchParams.set("t", Date.now().toString());
const corsProxyUrl = "https://corsproxy.io?" + encodeURIComponent(madeURL.href);
const response = await fetch(corsProxyUrl);
const { href } = madeURL;
const response = await fetch(href);
const blob = await response.blob();
const blobUrl = URL.createObjectURL(blob);