handle thing that apparently errored beyond my expectations
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
effc82d782
commit
960e9f367e
@ -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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user