0.3.5-alpha.4.fix.1

This commit is contained in:
2026-09-21 23:40:22 +02:00
parent ce3811f8ec
commit 48de882f70
5 changed files with 108 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
// file: crates/common/game-realtime-webtransport-lib/src/webtransport.rs
// version: 3
// version: 4
const CERTIFICATE_HASH_SIZE: usize = 32;
const LOCAL_CERTIFICATE_CLOCK_SKEW: std::time::Duration = std::time::Duration::from_secs(60);
@@ -446,7 +446,7 @@ impl game_realtime_transport_lib::RealtimeReceiver for WebTransportReceiver {
Self: 'a;
fn receive(&mut self) -> Self::ReceiveFuture<'_> {
return Box::pin(async move { self.receive_frame().await });
return Box::pin(async move { return self.receive_frame().await });
}
}