cargo fmt

This commit is contained in:
Sijmen 2023-11-17 10:17:20 +01:00
parent ef4c554820
commit 302ac9b050
Signed by: vijfhoek
GPG key ID: DAF7821E067D9C48

View file

@ -82,7 +82,10 @@ impl Cri {
let command = tokens.next().unwrap(); let command = tokens.next().unwrap();
match command { match command {
"/join" => { "/join" => {
let channel = tokens.next().map(str::to_string).or_else(|| self.message_log.active_channel.clone()); let channel = tokens
.next()
.map(str::to_string)
.or_else(|| self.message_log.active_channel.clone());
if channel.is_none() { if channel.is_none() {
// TODO error message // TODO error message
return; return;
@ -94,16 +97,21 @@ impl Cri {
return; return;
} }
self self.input_tx
.input_tx .borrow()
.borrow() .send(
.send(IrcCommand::JOIN(channel.clone(), tokens.next().map(str::to_string), None).into()) IrcCommand::JOIN(channel.clone(), tokens.next().map(str::to_string), None)
.unwrap(); .into(),
)
.unwrap();
self.message_log.set_active(Some(channel)); self.message_log.set_active(Some(channel));
}, }
"/part" => { "/part" => {
let channel = tokens.next().map(str::to_string).or_else(|| self.message_log.active_channel.clone()); let channel = tokens
.next()
.map(str::to_string)
.or_else(|| self.message_log.active_channel.clone());
if channel.is_none() { if channel.is_none() {
// TODO error message // TODO error message
return; return;