You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For shorthand publish such as x="false" and y="1234" where the value is in quotes (single or double), the value should be kept as string type and not be auto-converted to bool, integer, or other types.
The text was updated successfully, but these errors were encountered:
Fixes issue #130
During `parse_inline_params` is called to parse parameters input, the leading and trailing single/double quotes is removed. Digit and True/False in quotes will be parsed as number and boolean type instead of String after `json.loads()`.
Solution:
For string in quotes (not includes dictionary `'x=\'{\"a\": 1}\''`), 'json.loads' is not called.
For shorthand publish such as
x="false"
andy="1234"
where the value is in quotes (single or double), the value should be kept as string type and not be auto-converted to bool, integer, or other types.The text was updated successfully, but these errors were encountered: