From c9d29621ccaecbf8751ce4762026713ce9b98eed Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Thu, 15 Feb 2024 10:55:47 +0000 Subject: fix(list): filter for repo event ref tag previously filtering for d tag rather than a tag this kind of bug should be picked up by tests when our mock relay is applying filters before sending events --- src/sub_commands/list.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/sub_commands/list.rs b/src/sub_commands/list.rs index 47a8fdc..413406a 100644 --- a/src/sub_commands/list.rs +++ b/src/sub_commands/list.rs @@ -196,7 +196,8 @@ pub async fn find_pr_events( nostr::Filter::default() .kind(nostr::Kind::Custom(PATCH_KIND)) .custom_tag(nostr::Alphabet::T, vec!["root"]) - .identifiers( + .custom_tag( + nostr::Alphabet::A, repo_ref .maintainers .iter() -- cgit v1.2.3