fix(session-recovery): handle API/storage index mismatch in empty message recovery

- Try both targetIndex and targetIndex-1 to handle system message offset
- Remove 'last assistant message' skip logic (API error means it's not final)

🤖 GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode)
This commit is contained in:
YeonGyu-Kim
2025-12-13 04:16:42 +09:00
parent 8e62514eef
commit 7fe85a11da

View File

@@ -122,13 +122,7 @@ export function findEmptyMessages(sessionID: string): string[] {
const messages = readMessages(sessionID)
const emptyIds: string[] = []
for (let i = 0; i < messages.length; i++) {
const msg = messages[i]
// API rule: only the final assistant message may have empty content
const isLastMessage = i === messages.length - 1
if (isLastMessage && msg.role === "assistant") continue
for (const msg of messages) {
if (!messageHasContent(msg.id)) {
emptyIds.push(msg.id)
}
@@ -140,18 +134,25 @@ export function findEmptyMessages(sessionID: string): string[] {
export function findEmptyMessageByIndex(sessionID: string, targetIndex: number): string | null {
const messages = readMessages(sessionID)
if (targetIndex < 0 || targetIndex >= messages.length) return null
// Try multiple indices to handle system message offset
// API includes system message at index 0, storage may not
const indicesToTry = [targetIndex, targetIndex - 1]
const targetMsg = messages[targetIndex]
for (const idx of indicesToTry) {
if (idx < 0 || idx >= messages.length) continue
// API rule: only the final assistant message may have empty content
// All other messages (user AND assistant) must have non-empty content
const isLastMessage = targetIndex === messages.length - 1
if (isLastMessage && targetMsg.role === "assistant") return null
const targetMsg = messages[idx]
if (messageHasContent(targetMsg.id)) return null
// NOTE: Do NOT skip last assistant message here
// If API returned an error, this message is NOT the final assistant message
// (the API only allows empty content for the ACTUAL final assistant message)
return targetMsg.id
if (!messageHasContent(targetMsg.id)) {
return targetMsg.id
}
}
return null
}
export function findFirstEmptyMessage(sessionID: string): string | null {