From 84613187e1bda102ac72a207dfdf9c51ea416f80 Mon Sep 17 00:00:00 2001 From: Dave Date: Fri, 9 Oct 2020 11:26:45 -0400 Subject: [PATCH] Fixed missing timestamps on point redemption messages (#2043) * Added timestamps to point redemption messages * updated change log Co-authored-by: fourtf --- CHANGELOG.md | 1 + src/providers/twitch/TwitchMessageBuilder.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e20fb1f..73c5f574 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ - Bugfix: Starting Chatterino in a minimized state after an update will no longer cause a crash - Bugfix: Modify the emote parsing to handle some edge-cases with dots and stuff (#1704, #1714) - Bugfix: Fixed timestamps being incorrect on some messages loaded from the recent-messages service on startup (#1286, #2020) +- Bugfix: Fixed timestamps missing on channel point redemption messages (#1943) - Bugfix: Fixed tooltip didn't show in `EmotePopup` depending on the `Link preview` setting enabled or no (#2008) ## 2.2.0 diff --git a/src/providers/twitch/TwitchMessageBuilder.cpp b/src/providers/twitch/TwitchMessageBuilder.cpp index 42bf4096..c37edd61 100644 --- a/src/providers/twitch/TwitchMessageBuilder.cpp +++ b/src/providers/twitch/TwitchMessageBuilder.cpp @@ -1169,6 +1169,7 @@ Outcome TwitchMessageBuilder::tryParseCheermote(const QString &string) void TwitchMessageBuilder::appendChannelPointRewardMessage( const ChannelPointReward &reward, MessageBuilder *builder) { + builder->emplace(); QString redeemed = "Redeemed"; if (!reward.isUserInputRequired) {