Cookies are getting urlencoded.
Created by: DevNerd
Hello Again, the following issues is... well back?
As soon as i use the default methods i use to update forms to get auth cookies login_form.update( login_opts ).refresh.submit( async: false, update_cookies: true ).response
The following is happening.
[Debug-Cookies] Fresh Cookie <= SnippedDueToNda=MToxMzc5MTU4MTg5NzE2OmM5NDE1YWMwYTA2NTEwNjBjMjk1MTk1Njk3ODg5YWYwNjQ4YmEzZGE%3D
The following code is the output of.
#
# Updates the jar with +cookie+.
#
# @param [Cookie] cookie
#
# @return [CookieJar] self
#
def <<( cookie )
# Cookies are being inserted as htmlencoded hashes... {_needtofix_}
print "[Debug-Cookies] Fresh Cookie <= #{cookie} \n"
((@domains[cookie.domain] ||= {})[cookie.path] ||= {})[cookie.name] = cookie.dup
self
end
Looks like a issue to me?