Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
httpd: Fix clippy warning
cloudhead committed 2 years ago
commit 0123433f8162ca4071eacaf14954af64a9abbb33
parent bfc3c7164f2e77e797249357910f3f6311442a3b
1 file changed +2 -1
modified radicle-httpd/src/api/v1/projects.rs
@@ -711,7 +711,8 @@ async fn patch_update_handler(
            patch.review(revision, verdict, summary, labels, &signer)?;
        }
        patch::Action::Merge { revision, commit } => {
-
            patch.merge(revision, commit, &signer)?;
+
            // TODO: We should cleanup the stored copy at least.
+
            let _ = patch.merge(revision, commit, &signer)?;
        }
        patch::Action::RevisionComment {
            revision,