diff --git a/materialious/src/lib/Thumbnail.svelte b/materialious/src/lib/Thumbnail.svelte index 233e0ee8..7376a260 100644 --- a/materialious/src/lib/Thumbnail.svelte +++ b/materialious/src/lib/Thumbnail.svelte @@ -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()); }