mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Fixed missing timestamps on point redemption messages (#2043)
* Added timestamps to point redemption messages * updated change log Co-authored-by: fourtf <tf.four@gmail.com>
This commit is contained in:
parent
df97d609a2
commit
84613187e1
|
@ -24,6 +24,7 @@
|
||||||
- Bugfix: Starting Chatterino in a minimized state after an update will no longer cause a crash
|
- 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: 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 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)
|
- Bugfix: Fixed tooltip didn't show in `EmotePopup` depending on the `Link preview` setting enabled or no (#2008)
|
||||||
|
|
||||||
## 2.2.0
|
## 2.2.0
|
||||||
|
|
|
@ -1169,6 +1169,7 @@ Outcome TwitchMessageBuilder::tryParseCheermote(const QString &string)
|
||||||
void TwitchMessageBuilder::appendChannelPointRewardMessage(
|
void TwitchMessageBuilder::appendChannelPointRewardMessage(
|
||||||
const ChannelPointReward &reward, MessageBuilder *builder)
|
const ChannelPointReward &reward, MessageBuilder *builder)
|
||||||
{
|
{
|
||||||
|
builder->emplace<TimestampElement>();
|
||||||
QString redeemed = "Redeemed";
|
QString redeemed = "Redeemed";
|
||||||
if (!reward.isUserInputRequired)
|
if (!reward.isUserInputRequired)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue