Skip to content

Commit 3f37f5c

Browse files
authored
Merge pull request #7 from SamTrackbase/patch-2
Remove is_authenticated check before logout
2 parents 30dbc75 + 5e3ea3d commit 3f37f5c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

custom_components/reflex_local_auth/local_auth.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,7 @@ def _login(
7979
user_id: The user ID to associate with the LocalAuthSession.
8080
expiration_delta: The amount of time before the LocalAuthSession expires.
8181
"""
82-
if self.is_authenticated:
83-
self.do_logout()
82+
self.do_logout()
8483
if user_id < 0:
8584
return
8685
self.auth_token = self.auth_token or self.router.session.client_token

0 commit comments

Comments
 (0)