Update thumbnail to use lower quality

This commit is contained in:
WardPearce
2024-09-16 00:53:44 +12:00
parent 387e6bc63b
commit f972ecb41c
+3 -1
View File
@@ -85,7 +85,9 @@
async function loadAuthor() {
const channel = await getChannel(video.authorId);
const imgResp = await fetch(proxyGoogleImage(getBestThumbnail(channel.authorThumbnails)));
const imgResp = await fetch(
proxyGoogleImage(getBestThumbnail(channel.authorThumbnails, 75, 75))
);
authorImg = URL.createObjectURL(await imgResp.blob());
}