From 9c5af400390c6a48f998eaaae1a3f2bdef5e7f0d Mon Sep 17 00:00:00 2001 From: Max Litruv Boonzaayer Date: Mon, 2 Dec 2024 11:54:51 +1100 Subject: [PATCH] use thumbnails instead --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index dde2c13..125f02c 100644 --- a/main.js +++ b/main.js @@ -83,7 +83,7 @@ async function fetchPosts() { reposts: item.post.repostCount || 0, url: `https://bsky.app/profile/${item.post.author.handle}/post/${item.post.uri.split('/').pop()}`, embed: item.post.embed?.images?.map(img => ({ - url: img.fullsize, + url: img.thumb, alt: img.alt || '' })) || [] }));