瀏覽代碼

Remove copy pasta error of calling value on bool

Willnow, Patrick 7 月之前
父節點
當前提交
c9d948f284
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      backend/open_webui/main.py

+ 1 - 1
backend/open_webui/main.py

@@ -2249,7 +2249,7 @@ async def oauth_callback(provider: str, request: Request, response: Response):
         role = user.role
         if Users.get_num_users() == 1:
             role = "admin"
-        elif webui_app.state.config.ENABLE_OAUTH_ROLE_MAPPING.value:
+        elif webui_app.state.config.ENABLE_OAUTH_ROLE_MAPPING:
             oauth_roles = user_data.get(webui_app.state.config.OAUTH_ROLE_CLAIM)
             if oauth_roles:
                 for allowed_role in ["pending", "user", "admin"]: