mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Show channel point redemptions without messages in usercard. (#4557)
* set login name for channel point reward message * Update CHANGELOG.md * Update CHANGELOG.md --------- Co-authored-by: Mm2PL <mm2pl+gh@kotmisia.pl> Co-authored-by: Mm2PL <miau@mail.kotmisia.pl>
This commit is contained in:
parent
557e8d0640
commit
6b7d12e410
|
@ -18,6 +18,7 @@
|
||||||
- Minor: 7TV badges now automatically update upon changing. (#4512)
|
- Minor: 7TV badges now automatically update upon changing. (#4512)
|
||||||
- Minor: Stream status requests are now batched. (#4713)
|
- Minor: Stream status requests are now batched. (#4713)
|
||||||
- Minor: Added `/c2-theme-autoreload` command to automatically reload a custom theme. This is useful for when you're developing your own theme. (#4718)
|
- Minor: Added `/c2-theme-autoreload` command to automatically reload a custom theme. This is useful for when you're developing your own theme. (#4718)
|
||||||
|
- Minor: Show channel point redemptions without messages in usercard. (#4557)
|
||||||
- Bugfix: Increased amount of blocked users loaded from 100 to 1,000. (#4721)
|
- Bugfix: Increased amount of blocked users loaded from 100 to 1,000. (#4721)
|
||||||
- Bugfix: Fixed generation of crashdumps by the browser-extension process when the browser was closed. (#4667)
|
- Bugfix: Fixed generation of crashdumps by the browser-extension process when the browser was closed. (#4667)
|
||||||
- Bugfix: Fix spacing issue with mentions inside RTL text. (#4677)
|
- Bugfix: Fix spacing issue with mentions inside RTL text. (#4677)
|
||||||
|
|
|
@ -1490,6 +1490,7 @@ void TwitchMessageBuilder::appendChannelPointRewardMessage(
|
||||||
textList.append({redeemed, reward.title, QString::number(reward.cost)});
|
textList.append({redeemed, reward.title, QString::number(reward.cost)});
|
||||||
builder->message().messageText = textList.join(" ");
|
builder->message().messageText = textList.join(" ");
|
||||||
builder->message().searchText = textList.join(" ");
|
builder->message().searchText = textList.join(" ");
|
||||||
|
builder->message().loginName = reward.user.login;
|
||||||
}
|
}
|
||||||
|
|
||||||
void TwitchMessageBuilder::liveMessage(const QString &channelName,
|
void TwitchMessageBuilder::liveMessage(const QString &channelName,
|
||||||
|
|
Loading…
Reference in a new issue