Parakeet is a Rust-based Bluesky AppView aiming to implement most of the functionality required to support the Bluesky client

fix: another stupid author_feeds typo

handle.invalid 6f216030 d3c0c5d8

verified
Changed files
+1 -1
migrations
2025-09-27-171241_post-tweaks
+1 -1
migrations/2025-09-27-171241_post-tweaks/up.sql
··· 34 34 language plpgsql as 35 35 $$ 36 36 begin 37 - delete from author_feeds where did = OLD.did and at_uri = OLD.at_uri and typ = 'post'; 37 + delete from author_feeds where did = OLD.did and uri = OLD.at_uri and typ = 'post'; 38 38 return OLD; 39 39 end; 40 40 $$;