Im making a Bot that displays a Checklist based on a Trello Board (which all works fine), but for some reason the Interaction the function stops after / before i put an embed.AddField line
foreach(string checklistId in card.idChecklists)
{
var checkList = Utils.TrelloClient.GetCheckListFrom(checklistId);
string checkListContent = "";
foreach(var checkListEntry in checkList.checkItems)
{
string state = "☐";
if(checkListEntry.state != "incomplete") { state = "☑"; }
checkListContent += $"{state} {checkListEntry.name}\n";
}
embed.AddField(checkList.name.ToString(), checkListContent); // This is where it freezes
}
