xpodev / seamless

A Python package for creating and manipulating HTML components. It is working similar to React.js, but in Python.
https://seamless.readthedocs.io
MIT License
11 stars 1 forks source link

Fix cookie parsing #30

Closed binyamin555 closed 4 months ago

binyamin555 commented 4 months ago

Since cookie values may contain the = symbol, we don't want to split the cookie string over all the = signs, but only by the first occurence of it.

This PR fixes this issue.