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
Here you don't allow for a query as well as a path. You'd want to pass path + "?" + query. In the case that's it's a URI, I'm pretty sure you can just pass the whole URI object to Net::HTTP::Get.new(..) and that way the query part won't be dropped.
The text was updated successfully, but these errors were encountered:
Looking at the following line in your code (lib/tor/http.rb):
request = Net::HTTP::Get.new(path || uri_or_host.path)
Here you don't allow for a query as well as a path. You'd want to pass path + "?" + query. In the case that's it's a URI, I'm pretty sure you can just pass the whole URI object to Net::HTTP::Get.new(..) and that way the query part won't be dropped.
The text was updated successfully, but these errors were encountered: