Parakeet is a Rust-based Bluesky AppServer aiming to implement most of the functionality required to support the Bluesky client
appview atproto bluesky rust appserver

fix: another stupid author_feeds typo (reprise)

mia.omg.lol 7ee3b485 283d69b4

verified
+1 -1
+1 -1
migrations/2025-09-27-171241_post-tweaks/up.sql
··· 51 51 $$ 52 52 begin 53 53 insert into author_feeds (uri, cid, post, did, typ, sort_at) 54 - VALUES ('at://' || NEW.did || 'app.bsky.feed.repost' || NEW.rkey, NEW.post_cid, NEW.post, NEW.did, 'repost', NEW.created_at) 54 + VALUES ('at://' || NEW.did || '/app.bsky.feed.repost/' || NEW.rkey, NEW.post_cid, NEW.post, NEW.did, 'repost', NEW.created_at) 55 55 on conflict do nothing; 56 56 return NEW; 57 57 end;