mirror of
https://git.ngram.ca/OpenJam/rc-servers
synced 2026-08-23 23:08:52 +00:00
Fix missing ctx which doesn't actually cause any problems
This commit is contained in:
@@ -178,7 +178,7 @@ async fn do_connect_handshake(
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
while let Packet::Ping(ping) = packet3 {
|
while let Packet::Ping(ping) = packet3 {
|
||||||
polariton_server::utils::handle_ping_async(ping, socket, &Default::default()).await.unwrap_or_default();
|
polariton_server::utils::handle_ping_async(ping, socket, &ctx).await.unwrap_or_default();
|
||||||
packet3 = match polariton_server::utils::receive_packet_async(socket, &ctx).await {
|
packet3 = match polariton_server::utils::receive_packet_async(socket, &ctx).await {
|
||||||
Ok(x) => x,
|
Ok(x) => x,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user