ReportPath set field order/user defined field

Signed-off-by: James Cherry <cherry@CerezoBook.local>
This commit is contained in:
James Cherry 2026-05-26 19:17:29 -07:00
parent de65ba62b4
commit 8f5b481495
1 changed files with 2 additions and 2 deletions

View File

@ -3252,9 +3252,9 @@ ReportPath::reportLine(std::string_view what,
reportFieldBlank(field, line);
}
else if (field == field_case_)
line += line_case;
reportField(line_case, field, line);
else if (field->getValue())
line += field->value(path, this);
reportField(field->value(path, this), field, line);
first_field = false;
}