mirror of
https://github.com/open-webui/open-webui.git
synced 2026-08-28 05:27:35 +00:00
refac
This commit is contained in:
parent
9277879bcf
commit
17cc566707
1 changed files with 3 additions and 1 deletions
|
|
@ -367,7 +367,9 @@ class UsersTable:
|
|||
query = select(User).where(sub_expr == sub)
|
||||
# SQLite preserves JSON numeric type here; Postgres ->> already compares numeric JSON as text.
|
||||
if session.get_bind().dialect.name == 'sqlite' and sub.isdecimal():
|
||||
query = select(User).where(or_(sub_expr == sub, sub_expr == int(sub)))
|
||||
sub_int = int(sub)
|
||||
if str(sub_int) == sub and sub_int <= 2**63 - 1:
|
||||
query = select(User).where(or_(sub_expr == sub, sub_expr == sub_int))
|
||||
row = (await session.execute(query)).scalars().first()
|
||||
return UserModel.model_validate(row) if row else None
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue