···27692769// Mastodon links are "posts" too but they are converted to real quote posts and there's too many domains to check
27702770// This is just "Progressive Enhancement"
27712771function isCardPost(domain) {
27722772- return ['x.com', 'twitter.com', 'threads.net', 'bsky.app'].includes(domain);
27722772+ return [
27732773+ 'x.com',
27742774+ 'twitter.com',
27752775+ 'threads.net',
27762776+ 'bsky.app',
27772777+ 'bsky.brid.gy',
27782778+ 'fed.brid.gy',
27792779+ ].includes(domain);
27732780}
2774278127752782function Byline({ authors, hidden, children }) {