You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`[Roo-Debug] readApiMessages: Found OLD API conversation history file (claude_messages.json), but it's empty (parsed as []). TaskId: ${taskId}, Path: ${oldPath}`,
49
+
)
50
+
}
51
+
awaitfs.unlink(oldPath)
52
+
returnparsedData
53
+
}catch(error){
54
+
console.error(
55
+
`[Roo-Debug] readApiMessages: Error parsing OLD API conversation history file (claude_messages.json). TaskId: ${taskId}, Path: ${oldPath}, Error: ${error}`,
56
+
)
57
+
// DO NOT unlink oldPath if parsing failed, throw error instead.
58
+
throwerror
59
+
}
32
60
}
33
61
}
34
62
63
+
// If we reach here, neither the new nor the old history file was found.
64
+
console.error(
65
+
`[Roo-Debug] readApiMessages: API conversation history file not found for taskId: ${taskId}. Expected at: ${filePath}`,
0 commit comments