diff options
Diffstat (limited to 'src/sub_commands/list.rs')
| -rw-r--r-- | src/sub_commands/list.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sub_commands/list.rs b/src/sub_commands/list.rs index 1a30b9b..24979fe 100644 --- a/src/sub_commands/list.rs +++ b/src/sub_commands/list.rs | |||
| @@ -801,7 +801,7 @@ pub async fn find_commits_for_proposal_root_events( | |||
| 801 | .context("cannot fetch patch events")? | 801 | .context("cannot fetch patch events")? |
| 802 | .iter() | 802 | .iter() |
| 803 | .filter(|e| { | 803 | .filter(|e| { |
| 804 | e.kind.as_u64() == PATCH_KIND | 804 | e.kind.as_u16() == PATCH_KIND |
| 805 | && e.tags.iter().any(|t| { | 805 | && e.tags.iter().any(|t| { |
| 806 | t.as_vec().len() > 2 | 806 | t.as_vec().len() > 2 |
| 807 | && proposal_root_events | 807 | && proposal_root_events |