From 193ed2f675ac6b0d1ab79ed65057c8a56a4fab85 Mon Sep 17 00:00:00 2001 From: Sebastian Martinez Date: Fri, 3 Nov 2023 16:37:11 +0100 Subject: [PATCH] radicle: Add missing embeds in `RevisionComment` --- radicle/src/cob/patch.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/radicle/src/cob/patch.rs b/radicle/src/cob/patch.rs index bd3139a2..f6538185 100644 --- a/radicle/src/cob/patch.rs +++ b/radicle/src/cob/patch.rs @@ -1002,6 +1002,7 @@ impl Patch { revision, body, reply_to, + embeds, .. } => { if let Some(revision) = lookup::revision_mut(self, &revision)? { @@ -1013,7 +1014,7 @@ impl Patch { body, reply_to, None, - vec![], + embeds, )?; } }