🐛 (ls_client.rs): fix LS_cid parameter by removing URL encoding from the value

This commit is contained in:
Daniel López Azaña 2024-04-05 18:17:34 +02:00
parent 46cd2fd0af
commit 638c181bb6

View File

@ -509,7 +509,7 @@ impl LightstreamerClient {
println!("self.connection_options.get_send_sync(): {:?}", self.connection_options.get_send_sync()); println!("self.connection_options.get_send_sync(): {:?}", self.connection_options.get_send_sync());
let mut params: Vec<(&str, &str)> = vec![ let mut params: Vec<(&str, &str)> = vec![
("LS_adapter_set", &ls_adapter_set), ("LS_adapter_set", &ls_adapter_set),
("LS_cid", "mgQkwtwdysogQz2BJ4Ji%20kOj2Bg"), ("LS_cid", "mgQkwtwdysogQz2BJ4Ji kOj2Bg"),
("LS_send_sync", &ls_send_sync), ("LS_send_sync", &ls_send_sync),
("LS_protocol", "TLCP-2.4.0"), ("LS_protocol", "TLCP-2.4.0"),
]; ];