Improve events
Add known clients (cache) for leaving clients Add message to returned json object
This commit is contained in:
parent
f860fe3689
commit
ae411b6dcc
7 changed files with 117 additions and 24 deletions
src
|
@ -44,7 +44,7 @@ pub fn parameter_parse(params_str: &str) -> ParameterList {
|
|||
|
||||
let mut response_params = ParameterList::new();
|
||||
parts.iter().for_each(|part| {
|
||||
let (key, value) = part.split_once('=').unwrap_or((part, "1"));
|
||||
let (key, value) = part.split_once('=').unwrap_or((part, ""));
|
||||
response_params.insert(key.to_string(), decode_value(value));
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue