fix args joining

This commit is contained in:
white
2025-11-11 19:13:47 +03:00
parent 277f6756bd
commit 860dc21272

View File

@@ -67,7 +67,7 @@ impl Command {
Command::GetAutostart => get_autostart(), Command::GetAutostart => get_autostart(),
Command::ModuleVersion => println!("{}", module_version().await?), Command::ModuleVersion => println!("{}", module_version().await?),
Command::BinaryVersion => println!("{}", bin_version()), Command::BinaryVersion => println!("{}", bin_version()),
Command::Args { args } => run_nfqws(&args.join("")).unwrap(), Command::Args { args } => run_nfqws(&args.join(" "))?,
} }
Ok(()) Ok(())