This commit is contained in:
Liudmila Molkova 2024-04-12 12:15:17 -07:00
Родитель f74e862325
Коммит 864c52ed30
1 изменённых файлов: 12 добавлений и 9 удалений

Просмотреть файл

@ -241,18 +241,21 @@ public class DocumentIndexer
.AppendFormat("Customer: {0} ", description.Trim())
.Append("\n");
foreach (IssueComment comment in issue.Comments!)
if (issue.Comments != null)
{
if (comment.AuthorIsInAzureOrg == true)
foreach (IssueComment comment in issue.Comments)
{
content.Append("Agent: ");
}
else
{
content.Append("Customer: ");
}
if (comment.AuthorIsInAzureOrg == true)
{
content.Append("Agent: ");
}
else
{
content.Append("Customer: ");
}
content.Append(comment.Comment?.Trim()).Append("\n");
content.Append(comment.Comment?.Trim()).Append("\n");
}
}
return content.ToString();