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()