mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
portal: fix decode error
This commit is contained in:
parent
089e0001c2
commit
d65cca5ab1
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ class Authenticator(BaseAuthenticator):
|
||||||
|
|
||||||
response.set_cookie(
|
response.set_cookie(
|
||||||
"yunohost.portal",
|
"yunohost.portal",
|
||||||
jwt.encode(new_infos, session_secret, algorithm="HS256").decode(),
|
jwt.encode(new_infos, session_secret, algorithm="HS256"),
|
||||||
secure=True,
|
secure=True,
|
||||||
httponly=True,
|
httponly=True,
|
||||||
path="/",
|
path="/",
|
||||||
|
|
Loading…
Add table
Reference in a new issue