Skip to content

Commit

Permalink
Merge pull request #5127 from camptocamp/fix
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
sbrunner authored Jul 3, 2019
2 parents 8fe27a4 + f00690f commit ee26fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geoportal/c2cgeoportal_geoportal/lib/authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def create_authentication(settings):
secret,
callback=defaultgroupsfinder,
cookie_name=settings["authtkt_cookie_name"],
samesite=samesite is None if samesite == '' else samesite,
samesite=None if samesite == '' else samesite,
timeout=timeout, max_age=timeout, reissue_time=reissue_time,
hashalg="sha512", http_only=http_only, secure=secure,
)
Expand Down

0 comments on commit ee26fba

Please sign in to comment.