ruby-proxifier icon indicating copy to clipboard operation
ruby-proxifier copied to clipboard

Fix local variable reference

Open camertron opened this issue 6 years ago • 0 comments

Usually it looks like instances of Proxy are created with an instance of URI, but if you're like me and you tried to instantiate one by hand with a string, you get a NameError in response. The problem is that url is passed into the constructor but URI.parse is passed a variable named uri, which doesn't exist. Not a problem if you instantiate proxies the right way™, but still a bug :)

camertron avatar Oct 04 '18 15:10 camertron