Skip to content

Commit 8f3bfe1

Browse files
committed
Small fix
1 parent 726c5b1 commit 8f3bfe1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/murfey/server/api/session_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def create_session(
198198
def update_session(
199199
session_id: MurfeySessionID, process: bool = True, db=murfey_db
200200
) -> None:
201-
session = db.exec(select(Session).where(session_id == session_id)).one()
201+
session = db.exec(select(Session).where(Session.id == session_id)).one()
202202
session.process = process
203203
db.add(session)
204204
db.commit()

0 commit comments

Comments
 (0)