fix client bug on msg

This commit is contained in:
David Westgate 2023-12-03 15:35:42 -08:00
parent 0bd7920a13
commit 2dea995c5d

View File

@ -160,7 +160,6 @@ pub fn start() {
} }
let host: String = input!("Enter the server host: "); let host: String = input!("Enter the server host: ");
// let host: &str = "fab04.cecs.pdx.edu"; //hard coded host for testing
if let Ok(mut stream) = TcpStream::connect(host.to_owned() + ":6667") { if let Ok(mut stream) = TcpStream::connect(host.to_owned() + ":6667") {
println!("Connected to {}. /help to see available commands", host); println!("Connected to {}. /help to see available commands", host);
@ -232,9 +231,7 @@ pub fn start() {
eprintln!("Usage: /msg [room] [message]"); eprintln!("Usage: /msg [room] [message]");
} }
}, },
_ => { _ => one_param_op(codes::MESSAGE, &mut stream, &inp),
eprintln!("Malformed command. Try /help");
}
}, },
_ => match inp.as_str() { _ => match inp.as_str() {