An Akkoma/Mastodon compatible API bridge that translates Mastodon/Akkoma client API requests into ATProto XRPC calls.
4
fork

Configure Feed

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

fix reposts in acct timelines

fizzAI 45b3535c 614bbb02

+2 -2
+2 -2
app/routes/accounts.py
··· 9 9 10 10 from app.atproto import ATProtoClient, SessionStore, parse_at_uri 11 11 from app.auth import optional_auth, require_auth 12 - from app.convert import convert_account, convert_relationship, convert_status 12 + from app.convert import convert_account, convert_feed_item, convert_relationship, convert_status 13 13 from app.utils import now_iso 14 14 15 15 ··· 220 220 # Skip pinned post in regular feed to avoid duplication 221 221 if pinned_uri and post.get("uri") == pinned_uri: 222 222 continue 223 - status = convert_status(post, session=session) 223 + status = convert_feed_item(item, session=session) 224 224 statuses.append(status) 225 225 return statuses 226 226