From bdb64b14fa383ca0c7988f64014d73a5964402ea Mon Sep 17 00:00:00 2001 From: Patrick Geneva Date: Mon, 4 Oct 2021 20:38:39 -0400 Subject: [PATCH] fix #224, #216, #221 (#225) --- TwitchDownloaderCore/ChatRenderer.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/TwitchDownloaderCore/ChatRenderer.cs b/TwitchDownloaderCore/ChatRenderer.cs index 5f026a9c..71e67c93 100644 --- a/TwitchDownloaderCore/ChatRenderer.cs +++ b/TwitchDownloaderCore/ChatRenderer.cs @@ -83,6 +83,7 @@ await Task.Run(() => if (comment.message.user_notice_params.msg_id == "highlighted-message" && comment.message.fragments == null && comment.message.body != null) { comment.message.fragments = new List(); + comment.message.fragments.Add(new Fragment()); comment.message.fragments[0].text = comment.message.body; } if (comment.message.fragments == null || comment.commenter == null)