mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
fix: properly evaluate AURREMEMBER cookie
Whenever the AURREMEMBER cookie was defined, regardless of its value, "remember_me" is always set to True The get method of a dict returns a string, converting a value of str "False" into a bool -> True We have to check AURREMEMBERs value instead. Signed-off-by: moson-mo <mo-son@mailbox.org>
This commit is contained in:
parent
5fe375bdc3
commit
2eacc84cd0
3 changed files with 3 additions and 5 deletions
|
@ -104,9 +104,7 @@ class BasicAuthBackend(AuthenticationBackend):
|
|||
return unauthenticated
|
||||
|
||||
timeout = aurweb.config.getint("options", "login_timeout")
|
||||
remembered = "AURREMEMBER" in conn.cookies and bool(
|
||||
conn.cookies.get("AURREMEMBER")
|
||||
)
|
||||
remembered = conn.cookies.get("AURREMEMBER") == "True"
|
||||
if remembered:
|
||||
timeout = aurweb.config.getint("options", "persistent_cookie_timeout")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue