Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
cli: Show alias on `rad issue` and `rad patch`
xphoniex committed 2 years ago
commit e17e7896028792e1c902af420431b31482edd5a8
parent 90cf62b0274c85f8b10c38ad6d046e1c5aa868ae
1 file changed +1 -1
modified radicle-httpd/src/api/v1/projects.rs
@@ -733,7 +733,7 @@ async fn patches_handler(
        .all()?
        .filter_map(|r| {
            let (id, patch, clock) = r.ok()?;
-
            (state.matches(&patch.state())).then_some((id, patch, clock))
+
            (state.matches(patch.state())).then_some((id, patch, clock))
        })
        .collect::<Vec<_>>();
    patches.sort_by(|(_, a, _), (_, b, _)| b.timestamp().cmp(&a.timestamp()));