diff options
Diffstat (limited to 'src/git_remote_helper.rs')
| -rw-r--r-- | src/git_remote_helper.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/git_remote_helper.rs b/src/git_remote_helper.rs index 2244383..4d34850 100644 --- a/src/git_remote_helper.rs +++ b/src/git_remote_helper.rs | |||
| @@ -366,7 +366,8 @@ async fn get_open_proposals( | |||
| 366 | .iter() | 366 | .iter() |
| 367 | .filter(|e| { | 367 | .filter(|e| { |
| 368 | status_kinds().contains(&e.kind()) | 368 | status_kinds().contains(&e.kind()) |
| 369 | && e.iter_tags() | 369 | && e.tags() |
| 370 | .iter() | ||
| 370 | .any(|t| t.as_vec()[1].eq(&proposal.id.to_string())) | 371 | .any(|t| t.as_vec()[1].eq(&proposal.id.to_string())) |
| 371 | }) | 372 | }) |
| 372 | .collect::<Vec<&nostr::Event>>() | 373 | .collect::<Vec<&nostr::Event>>() |