Merge branch 'xvar/fix-stdin-commands' into 'master'

Fixed server-cli command parsing failure on Windows

See merge request 
This commit is contained in:
Joshua Barretto 2021-09-05 16:22:44 +00:00
commit ce0a7852bf

View File

@ -100,7 +100,7 @@ impl Tui {
},
Ok(_) => {
debug!(?line, "basic mode: command entered");
crate::cli::parse_command(&line, &mut msg_s);
crate::cli::parse_command(line.trim(), &mut msg_s);
},
}
}