Live location tracking and playback for the game "manhunt"

Pass correct URL params to signal server

bwc9876.dev e91e3b9a 1125fe47

verified
+5 -1
+3
TODO.md
··· 3 ## Ben 4 5 - [ ] Transport : Packet splitting 6 - [ ] State : Event history tracking 7 - [ ] State : Post game sync 8 - [ ] API : Handling Profile Syncing ··· 12 - [ ] Meta : CI Setup 13 - [ ] Meta : README Instructions 14 - [x] Meta : Recipes for type binding generation
··· 3 ## Ben 4 5 - [ ] Transport : Packet splitting 6 + - [ ] Transport : Handle Errors 7 + - [ ] Transport : Mark game started on client 8 - [ ] State : Event history tracking 9 - [ ] State : Post game sync 10 - [ ] API : Handling Profile Syncing ··· 14 - [ ] Meta : CI Setup 15 - [ ] Meta : README Instructions 16 - [x] Meta : Recipes for type binding generation 17 + - [x] Singaling: All of it
+2 -1
backend/src/lobby.rs
··· 55 ) -> Self { 56 Self { 57 transport: Arc::new(MatchboxTransport::new(&format!( 58 - "{ws_url_base}/{join_code}" 59 ))), 60 is_host: host, 61 self_profile: profile,
··· 55 ) -> Self { 56 Self { 57 transport: Arc::new(MatchboxTransport::new(&format!( 58 + "{ws_url_base}/{join_code}{}", 59 + if host { "?create" } else { "" } 60 ))), 61 is_host: host, 62 self_profile: profile,