From 1bef4c5623aedb0f4e203d495ab481e893f94f2f Mon Sep 17 00:00:00 2001 From: gidoichi Date: Sun, 9 Nov 2025 20:10:14 +0900 Subject: [PATCH] fix(OCO_HOOK_AUTO_UNCOMMENT): set value on `oco config set` --- src/commands/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/config.ts b/src/commands/config.ts index f95e1f39..44c13cfd 100644 --- a/src/commands/config.ts +++ b/src/commands/config.ts @@ -840,6 +840,7 @@ export const configValidators = { typeof value === 'boolean', 'Must be true or false' ); + return value; }, [CONFIG_KEYS.OCO_OLLAMA_THINK](value: any) { @@ -848,7 +849,6 @@ export const configValidators = { typeof value === 'boolean', 'Must be true or false' ); - return value; } };