mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 06:25:10 +01:00
Update crates/teloxide-macros/src/command.rs
Co-authored-by: Waffle Maybe <waffle.lapkin@gmail.com>
This commit is contained in:
parent
178a6cf957
commit
52f3c052c8
1 changed files with 3 additions and 1 deletions
|
@ -49,7 +49,9 @@ impl Command {
|
|||
let prefix = prefix.map(|(p, _)| p).unwrap_or_else(|| global_options.prefix.clone());
|
||||
let description = description.map(|(d, _)| d);
|
||||
let parser = parser.map(|(p, _)| p).unwrap_or_else(|| global_options.parser_type.clone());
|
||||
Ok(Self { prefix, description, parser, name, hidden: hide.is_some() })
|
||||
let hidden = hide.is_some();
|
||||
|
||||
Ok(Self { prefix, description, parser, name, hidden })
|
||||
}
|
||||
|
||||
pub fn get_prefixed_command(&self) -> String {
|
||||
|
|
Loading…
Reference in a new issue