Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
httpd: Fix clippy warning
cloudhead committed 2 years ago
commit 7a641aead522c5aa2bc2ef31eb4c7490d9d25aef
parent d565a039e4e09c35b4f874e8c2fb77be46d023f9
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,