Is there a way to set `cookie.extensions["SameSite...
# ktor
e
Is there a way to set
cookie.extensions["SameSite"] = "None; Secure"
without the semicolon being escaped in the cookie output?
h
cookie.extensions["SameSite"] = "None" cookie.secure = true
e
thanks!