From 2934f9a3c572d4a6e6bf0207cf01833fb466cd8b Mon Sep 17 00:00:00 2001 From: Andrew Pareles Date: Sat, 10 May 2025 18:10:00 -0700 Subject: [PATCH] += -> = --- .../void/electron-main/llmMessage/sendLLMMessage.impl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/void/electron-main/llmMessage/sendLLMMessage.impl.ts b/src/vs/workbench/contrib/void/electron-main/llmMessage/sendLLMMessage.impl.ts index e1a55457..5174e910 100644 --- a/src/vs/workbench/contrib/void/electron-main/llmMessage/sendLLMMessage.impl.ts +++ b/src/vs/workbench/contrib/void/electron-main/llmMessage/sendLLMMessage.impl.ts @@ -759,7 +759,7 @@ const sendGeminiChat = async ({ const functionCall = functionCalls[0] // Get the first function call toolName = functionCall.name ?? '' toolParamsStr = JSON.stringify(functionCall.args ?? {}) - toolId += functionCall.id ?? '' + toolId = functionCall.id ?? '' } // (do not handle reasoning yet)