fix: exclude unlisted/private posts from weekly digests

OwnYourSwarm checkin posts (visibility: unlisted) were still appearing
in /digest pages. Add isListed filter to the weeklyDigests collection.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
svemagie
2026-03-27 21:10:08 +01:00
parent 626bab789e
commit 36d9ef1b28
+1
View File
@@ -1502,6 +1502,7 @@ export default function (eleventyConfig) {
const allPosts = collectionApi
.getFilteredByGlob("content/**/*.md")
.filter(isPublished)
.filter(isListed)
.filter((item) => {
// Exclude replies
return !(item.data.inReplyTo || item.data.in_reply_to);