diff --git a/TwitchDownloaderWPF/PageChatRender.xaml.cs b/TwitchDownloaderWPF/PageChatRender.xaml.cs index ca5f85f1..56f7fb22 100644 --- a/TwitchDownloaderWPF/PageChatRender.xaml.cs +++ b/TwitchDownloaderWPF/PageChatRender.xaml.cs @@ -441,6 +441,11 @@ private SKBitmap DrawMessage(SKBitmap sectionImage, List imageList, Re } drawPos.X += emoteImage.Width; } + else + { + //Probably an old emote that was removed + sectionImage = DrawText(sectionImage, fragment.text, messageFont, imageList, ref hasEmote, renderOptions, currentGifEmotes, canvasSize, ref drawPos, true, default_x); + } } }