crates/snact-cdp/src/transport.rs has URL parsing that silently falls back instead of returning an error:
- Line ~43: WebSocket URL parsing uses chained
unwrap_or() — if the URL is completely malformed, downstream code gets a bad host:port string and panics or hangs instead of returning a clear error.
Should return a CdpTransportError with a descriptive message instead.
crates/snact-cdp/src/transport.rshas URL parsing that silently falls back instead of returning an error:unwrap_or()— if the URL is completely malformed, downstream code gets a bad host:port string and panics or hangs instead of returning a clear error.Should return a
CdpTransportErrorwith a descriptive message instead.