rust-youtube-downloader
rust-youtube-downloader copied to clipboard
Remove redundant calls to http_build_query
One of the things I noticed in #181 is that there's unnecessary calls to parse_str and http_build_query happening in getUriAndQueryString.
The values from getQueryString already go through http_build_query so it seems unnecessary to reparse it and build it again. Should just reduce the work vapor-core has to do every request.