radicle: Add missing embeds in `RevisionComment`

This commit is contained in:
Sebastian Martinez 2023-11-03 16:37:11 +01:00 committed by cloudhead
parent 65118e6ce9
commit 193ed2f675
No known key found for this signature in database
1 changed files with 2 additions and 1 deletions

View File

@ -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,
)?;
}
}