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
We are using requests to handle our flutter http and found an issue in extractCookies. When a response cookie has an equals sign it, the existing split on "=" causes us to lose a portion of our cookie. IE
cookie1=qwerty-=?!2345
breaks into three parts
cookie1
qwerty-
?!2345
to work through this locally we are now splitting on the first instance of an =.
The text was updated successfully, but these errors were encountered:
We are using requests to handle our flutter http and found an issue in extractCookies. When a response cookie has an equals sign it, the existing split on "=" causes us to lose a portion of our cookie. IE
cookie1=qwerty-=?!2345
breaks into three parts
to work through this locally we are now splitting on the first instance of an =.
The text was updated successfully, but these errors were encountered: