fix: send Claude identity prefix on first session message
The systemSent variable was being set to true before being passed to runCommandReply, causing the identity prefix to never be injected. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
committed by
Peter Steinberger
parent
06dd9b8ed8
commit
73a9fdca2a
@@ -263,7 +263,6 @@ export async function getReplyFromConfig(
|
|||||||
};
|
};
|
||||||
sessionStore[sessionKey] = sessionEntry;
|
sessionStore[sessionKey] = sessionEntry;
|
||||||
await saveSessionStore(storePath, sessionStore);
|
await saveSessionStore(storePath, sessionStore);
|
||||||
systemSent = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const prefixedBody =
|
const prefixedBody =
|
||||||
|
|||||||
Reference in New Issue
Block a user