From e1e2b17853fd00a050fa7bd492cc5181f1569a6d Mon Sep 17 00:00:00 2001 From: "l.gabrysiak" Date: Sat, 1 Mar 2025 20:33:55 +0100 Subject: [PATCH] mod auth --- backend/open_webui/models/auths.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/open_webui/models/auths.py b/backend/open_webui/models/auths.py index 79bfa01..659f7da 100644 --- a/backend/open_webui/models/auths.py +++ b/backend/open_webui/models/auths.py @@ -203,6 +203,6 @@ class AuthsTable: return False def update_user_profile(self, id: str, name: str, profile_image_url: str, role: str) -> bool: - return Users.insert_new_user(id, name, profile_image_url, role) + return Users.update_user_profile(id, name, profile_image_url, role) Auths = AuthsTable()