(READ ONLY) Margin is an open annotation layer for the internet. Powered by the AT Protocol. margin.at
extension web atproto comments
98
fork

Configure Feed

Select the types of activity you want to include in your feed.

some fixes

+2 -1
+1
backend/internal/repository/postgres/pg_note_repo.go
··· 77 77 switch f.FeedType { 78 78 case domain.FeedTypeMargin: 79 79 where = append(where, "uri NOT LIKE '%network.cosmik%'") 80 + where = append(where, "uri NOT LIKE '%community.lexicon.bookmarks.bookmark%'") 80 81 case domain.FeedTypeSemble: 81 82 where = append(where, "uri LIKE '%network.cosmik%'") 82 83 case domain.FeedTypePopular:
+1 -1
web/src/components/common/Card.tsx
··· 190 190 }; 191 191 192 192 const pageUrl = item.target?.source || item.source; 193 - const isBookmark = type === "bookmark"; 193 + const isBookmark = type === "bookmark" && !item.body?.value; 194 194 195 195 React.useEffect(() => { 196 196 if (isBookmark && item.uri && !ogData && pageUrl) {