tweak: fix bool

pull/4663/head
Aiden Cline 2025-11-23 11:43:09 -06:00
parent a256df9823
commit 2509d03f42
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ export namespace SessionPrompt {
const message = await createUserMessage(input)
await Session.touch(input.sessionID)
if (input.noReply) {
if (input.noReply === true) {
return message
}