fix: avoid storage rendering for ticket history

This commit is contained in:
Meik
2026-06-30 19:31:40 +02:00
parent 66f1131863
commit d8fbd445d1
2 changed files with 2 additions and 2 deletions

View File

@@ -1423,7 +1423,7 @@ namespace C4IT.F4SD
for (int i = 0; i < entries.Count; i++)
{
var item = entries[i];
var text = item.Body ?? string.Empty;
var text = item.Comments ?? string.Empty;
var createdDate = item.CreatedDate ?? DateTime.MinValue;
LogEntry($"Journal entry {i + 1}/{entries.Count}: ID={item.Id}, CreatedDate={createdDate}, CreatedBy={item.CreatorName}, Header={item.Header}", LogLevels.Debug);