handle thing that apparently errored beyond my expectations
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
jake 2023-02-02 23:28:55 -07:00
parent effc82d782
commit 960e9f367e

View File

@ -275,7 +275,9 @@ where
cipher_out = Some(cout); cipher_out = Some(cout);
}, },
OnConnect::Packet(pkt) => { OnConnect::Packet(pkt) => {
send_pkt(&mut socket, &mut NullCipher {}, &pkt).await.unwrap(); if let Err(err) = send_pkt(&mut socket, &mut NullCipher {}, &pkt).await {
error!("error sending on_connect packet {:?}", err);
}
} }
} }
} }