mirror of
https://github.com/open-webui/open-webui
synced 2025-06-26 18:26:48 +00:00
feat(sqlalchemy): cleanup fixes
This commit is contained in:
@@ -24,9 +24,7 @@ async def connect(sid, environ, auth):
|
||||
data = decode_token(auth["token"])
|
||||
|
||||
if data is not None and "id" in data:
|
||||
from apps.webui.internal.db import SessionLocal
|
||||
|
||||
user = Users.get_user_by_id(SessionLocal(), data["id"])
|
||||
user = Users.get_user_by_id(data["id"])
|
||||
|
||||
if user:
|
||||
SESSION_POOL[sid] = user.id
|
||||
|
||||
Reference in New Issue
Block a user