Fixed an error of getting wrong account
I'm now quite shure how it worked before
This commit is contained in:
parent
01ab461d28
commit
ae2b214904
@ -29,7 +29,7 @@ def get_account_info(
|
|||||||
) -> tuple[bytes, bytes, bytes]:
|
) -> tuple[bytes, bytes, bytes]:
|
||||||
"""Gets account info. Returns tuple of salt, login and password"""
|
"""Gets account info. Returns tuple of salt, login and password"""
|
||||||
statement = sqlmodel.select(models.Account).where(
|
statement = sqlmodel.select(models.Account).where(
|
||||||
models.Account.user_id == user_id and models.Account.name == name
|
models.Account.user_id == user_id, models.Account.name == name
|
||||||
)
|
)
|
||||||
with sqlmodel.Session(engine) as session:
|
with sqlmodel.Session(engine) as session:
|
||||||
result = session.exec(statement).first()
|
result = session.exec(statement).first()
|
||||||
|
Reference in New Issue
Block a user