From 74576b88f6c9e9ac2080362cc5e832d137839d87 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Sat, 11 Oct 2025 13:40:49 -0500 Subject: [PATCH] refac/fix --- backend/open_webui/routers/configs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/open_webui/routers/configs.py b/backend/open_webui/routers/configs.py index 10577e26d6..e7fa13d1ff 100644 --- a/backend/open_webui/routers/configs.py +++ b/backend/open_webui/routers/configs.py @@ -183,7 +183,7 @@ async def set_tool_servers_config( ) oauth_client_info = decrypt_data(oauth_client_info) - await request.app.state.oauth_client_manager.add_client( + request.app.state.oauth_client_manager.add_client( f"{server_type}:{server_id}", OAuthClientInformationFull(**oauth_client_info), )