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
idk how this happened but I just saw a weird error were crumbRequestField was not set, so request[@crumb["crumbRequestField"]] = @crumb["crumb"] does request[nil] = foo and that blows up in /net/http/generic_request.rb:71 in []=
is it supposed to be @crumb.fetch("crumbRequestField") -> fail if it is not set or request[@crumb["crumbRequestField"]] = @crumb["crumb"] if @crumb["crumbRequestField"] -> ignore if it is not set ?
The text was updated successfully, but these errors were encountered:
idk how this happened but I just saw a weird error were crumbRequestField was not set, so
request[@crumb["crumbRequestField"]] = @crumb["crumb"]
doesrequest[nil] = foo
and that blows up in/net/http/generic_request.rb:71 in []=
is it supposed to be
@crumb.fetch("crumbRequestField")
-> fail if it is not set orrequest[@crumb["crumbRequestField"]] = @crumb["crumb"] if @crumb["crumbRequestField"]
-> ignore if it is not set ?The text was updated successfully, but these errors were encountered: