mirror of
https://github.com/Jeuners/ECC.git
synced 2026-09-09 15:02:30 +02:00
fix: clarify loop status empty output
This commit is contained in:
parent
9aace2e6fe
commit
708a8fd715
2 changed files with 14 additions and 1 deletions
|
|
@ -551,7 +551,9 @@ function formatText(payload) {
|
|||
if (payload.sessions.length === 0) {
|
||||
const lines = [
|
||||
`ECC loop status (${payload.generatedAt})`,
|
||||
`No Claude transcript JSONL files found under ${payload.source.transcriptRoot}.`,
|
||||
skippedLines.length > 0
|
||||
? 'No readable Claude transcript JSONL files were found.'
|
||||
: `No Claude transcript JSONL files found under ${payload.source.transcriptRoot}.`,
|
||||
];
|
||||
if (skippedLines.length > 0) {
|
||||
lines.push('Skipped transcript errors:');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue