Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Windows URL encoding for multiple query params
Previously, passing a URL with multiple query parameters on Windows would result in improper escaping, causing unexpected behavior when using it with "cmd /c". This commit addresses this issue by properly escaping all query parameters in the URL. Now, URLs with multiple query parameters are handled correctly on Windows. See also: * https://doc.rust-lang.org/std/os/windows/process/trait.CommandExt.html#tymethod.raw_arg * https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/cmd * https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/start Related #67.
- Loading branch information