[web2py] Re: Samesite attribute in cookies

2020-08-08 Thread agent tresdev
Excellent and thanks for your answer, i didn't know where to search in the code On Saturday, August 8, 2020 at 3:14:36 AM UTC-5 Jose C wrote: > What version of web2py are you using? At least from 2.18.5+ it > specifically defaults to samesite Lax (and you would have to call > session.samesit

[web2py] Re: Samesite attribute in cookies

2020-08-08 Thread Jose C
What version of web2py are you using? At least from 2.18.5+ it specifically defaults to samesite Lax (and you would have to call session.samesite(False) to override the Lax setting). You could try put session.samesite('Lax') somewhere in your model and see if that resolves the issue. You ca