tangled
alpha
login
or
join now
parakeet.at
/
parakeet
63
fork
atom
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
63
fork
atom
overview
issues
12
pulls
pipelines
fix: another stupid author_feeds typo (reprise)
mia.omg.lol
2 weeks ago
7ee3b485
283d69b4
verified
This commit was signed with the committer's
known signature
.
mia.omg.lol
SSH Key Fingerprint:
SHA256:eb+NhC0QEl+XKRuFP/97oH6LEz0TXTKPXGDIAI5y7CQ=
+1
-1
1 changed file
expand all
collapse all
unified
split
migrations
2025-09-27-171241_post-tweaks
up.sql
+1
-1
migrations/2025-09-27-171241_post-tweaks/up.sql
···
51
$$
52
begin
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)
55
on conflict do nothing;
56
return NEW;
57
end;
···
51
$$
52
begin
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)
55
on conflict do nothing;
56
return NEW;
57
end;