Radish alpha
r
Radicle terminal user interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
cob: Remove CRDTs from COB state
Alexis Sellier committed 2 years ago
commit a102102d3edcf0397d6cb9b934078f7575afc0e1
parent 61f6bcd0067cddbc41e918b850c08c6dae9ea607
2 files changed +2 -2
modified radicle-tui/src/cob/issue.rs
@@ -9,7 +9,7 @@ pub fn all(repository: &Repository) -> Result<Vec<(IssueId, Issue)>> {

    Ok(patches
        .into_iter()
-
        .map(|(id, issue, _)| (id, issue))
+
        .map(|(id, issue)| (id, issue))
        .collect::<Vec<_>>())
}

modified radicle-tui/src/cob/patch.rs
@@ -10,7 +10,7 @@ pub fn all(repository: &Repository) -> Result<Vec<(PatchId, Patch)>> {

    Ok(patches
        .into_iter()
-
        .map(|(id, patch, _)| (id, patch))
+
        .map(|(id, patch)| (id, patch))
        .collect::<Vec<_>>())
}