From 9ab39d0a9c6941c4fbe159e3e533fc8df40e8995 Mon Sep 17 00:00:00 2001 From: hex2077 Date: Thu, 5 Feb 2026 22:14:02 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=B0=86=20iflow=20=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E4=B8=AD=E7=9A=84=20providerType=20=E6=9B=B4=E6=AD=A3=E4=B8=BA?= =?UTF-8?q?=20openai-iflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 原 providerType 'openai-iflow-oauth' 与后端定义不匹配,导致上传配置时提供商识别错误。统一使用 'openai-iflow' 以确保前后端一致。 --- static/app/upload-config-manager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/app/upload-config-manager.js b/static/app/upload-config-manager.js index 7c5af53..c9ba2c0 100644 --- a/static/app/upload-config-manager.js +++ b/static/app/upload-config-manager.js @@ -852,7 +852,7 @@ function detectProviderFromPath(filePath) { }, { patterns: ['configs/iflow/', '/iflow/'], - providerType: 'openai-iflow-oauth', + providerType: 'openai-iflow', displayName: 'OpenAI iFlow OAuth', shortName: 'iflow-oauth' }