mirror of
https://github.com/open-webui/open-webui
synced 2024-11-07 17:19:53 +00:00
fix: bad user get
This commit is contained in:
parent
7385016e36
commit
776bb2892c
@ -114,7 +114,7 @@ class UsersTable:
|
|||||||
|
|
||||||
def get_user_by_email(self, email: str) -> Optional[UserModel]:
|
def get_user_by_email(self, email: str) -> Optional[UserModel]:
|
||||||
try:
|
try:
|
||||||
user = User.get(User.email == email and User.oauth_sub.is_null())
|
user = User.get((User.email == email, User.oauth_sub.is_null()))
|
||||||
return UserModel(**model_to_dict(user))
|
return UserModel(**model_to_dict(user))
|
||||||
except:
|
except:
|
||||||
return None
|
return None
|
||||||
|
Loading…
Reference in New Issue
Block a user