Show only main pet posts in Recent posts feed (#120)#127
Merged
Conversation
Each pet is posted to Mastodon as a thread: a main post carries the photo while caption-overflow continuation posts have no media. The website's Recent posts grid took the first 6 RSS items indiscriminately, rendering the imageless thread replies as blank placeholder cards. Filter the feed to items that have an image before slicing to the post limit, so only the main posts appear. Closes #120. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Closes #120. The "Recent posts" grid on the landing page showed blank, imageless cards.
Each pet is posted to Mastodon as a thread: the main post carries the photo + caption, and caption-overflow continuation posts have no media attachment. The grid took the first 6 RSS
<item>s indiscriminately, so those imageless thread replies rendered as empty placeholder cards.Fix
docs/index.html:itemImageUrl(item)helper returning the first image attachment URL (or"").{ item, imageUrl }, filter out the imageless thread replies, then slice to the post limit — so only main posts show and each item's image URL is computed once.Verification
Served
docs/locally and loaded the page: the grid renders 6 main pet posts, no blank cards, no related console errors. Against the live feed at the time, 10 of 20 items were main posts (with images) — comfortably above the 6-post limit.🤖 Generated with Claude Code