We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 726c5b1 commit 8f3bfe1Copy full SHA for 8f3bfe1
src/murfey/server/api/session_info.py
@@ -198,7 +198,7 @@ def create_session(
198
def update_session(
199
session_id: MurfeySessionID, process: bool = True, db=murfey_db
200
) -> None:
201
- session = db.exec(select(Session).where(session_id == session_id)).one()
+ session = db.exec(select(Session).where(Session.id == session_id)).one()
202
session.process = process
203
db.add(session)
204
db.commit()
0 commit comments