Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue with cookie management #39

Open
leonardo22github opened this issue Mar 31, 2023 · 0 comments
Open

Issue with cookie management #39

leonardo22github opened this issue Mar 31, 2023 · 0 comments

Comments

@leonardo22github
Copy link

Hello,

I would recommend to implement the change below to allow the correct functioning of the cookies:

row 117:     request.headers['Cookie'] = response.headers.get('set-cookie') => 
after: request.headers['Cookie'] = request.headers['Cookie'] + response.headers.get('set-cookie')

row 167:     request.headers['Cookie'] = response2.headers.get('set-cookie') => 
after: request.headers['Cookie'] = request.headers['Cookie'] + response2.headers.get('set-cookie')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant