mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 19:37:51 +03:00
age-plugin: Fix no-label recipient plugins with old clients
This commit is contained in:
parent
bdec23fe8d
commit
5bae3f1eae
1 changed files with 4 additions and 1 deletions
|
@ -430,7 +430,10 @@ pub(crate) fn run_v1<P: RecipientPluginV1>(mut plugin: P) -> io::Result<()> {
|
|||
};
|
||||
|
||||
let labels = labels.iter().map(|s| s.as_str()).collect::<Vec<_>>();
|
||||
phase.send(LABELS, &labels, &[])?.unwrap();
|
||||
// We confirmed above that if `labels` is non-empty, the client supports labels.
|
||||
// So we can unconditionally send this, and will only get an `unsupported`
|
||||
// response if `labels` is empty (where it does not matter).
|
||||
let _ = phase.send(LABELS, &labels, &[])?;
|
||||
|
||||
match plugin.wrap_file_keys(file_keys, BidirCallbacks(&mut phase))? {
|
||||
Ok(files) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue