Make it actually go to the image 😭
Some checks are pending
Test / Test (push) Waiting to run

This commit is contained in:
thororen1234 2025-04-25 15:32:09 -04:00
parent 78dce83962
commit db08d79314
No known key found for this signature in database

View file

@ -141,7 +141,7 @@ async function createQuoteImage(avatarUrl: string, quoteOld: string, grayScale:
ctx.fillRect(0, 0, canvas.width, canvas.height); ctx.fillRect(0, 0, canvas.width, canvas.height);
const avatarBlob = await fetchImageAsBlob(avatarUrl); const avatarBlob = await fetchImageAsBlob(avatarUrl);
const fadeBlob = await fetchImageAsBlob("https://github.com/Equicord/Equibored/raw/main/icons/quoter/quoter.png"); const fadeBlob = await fetchImageAsBlob("https://raw.githubusercontent.com/Equicord/Equibored/refs/heads/main/icons/quoter/quoter.png");
const avatar = new Image(); const avatar = new Image();
const fade = new Image(); const fade = new Image();