From 7710d45c2038e2a869a5e99f3e1a70dd9f1eef35 Mon Sep 17 00:00:00 2001 From: syfantasy <115546901+syfantasy@users.noreply.github.com> Date: Mon, 30 Dec 2024 21:20:49 +0800 Subject: [PATCH] fix: whole key --- utils/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/config.js b/utils/config.js index 80f940b..e0a1b0f 100644 --- a/utils/config.js +++ b/utils/config.js @@ -271,7 +271,7 @@ export const Config = new Proxy(config, { if (typeof target[property] === 'string' && target[property].includes(',')) { const keys = target[property].split(',').map(key => key.trim()).filter(Boolean) const selectedKey = keys[Math.floor(Math.random() * keys.length)] - console.log(`[ChatGPT-Plugin] 当前使用的Gemini Key: ${selectedKey`) + console.log(`[ChatGPT-Plugin] 当前使用的Gemini Key: ${selectedKey}`) return selectedKey } }