This commit is contained in:
William 2026-01-29 15:11:05 +00:00
parent 3f708869b4
commit 07b84fd9e9

View File

@ -242,8 +242,9 @@ export async function runPreparedReply(
sessionEntry.updatedAt = Date.now();
sessionStore[sessionKey] = sessionEntry;
if (storePath) {
const entryToStore = sessionEntry;
await updateSessionStore(storePath, (store) => {
store[sessionKey] = sessionEntry;
store[sessionKey] = entryToStore;
});
}
}