Allow resub messages to show in /mentions tab (#3148)

Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
This commit is contained in:
James Upjohn 2021-08-15 22:39:58 +12:00 committed by GitHub
parent 9a1e405563
commit 4b251c64b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 12 deletions

View file

@ -5,6 +5,7 @@
- Minor: Remove TwitchEmotes.com attribution and the open/copy options when right-clicking a Twitch Emote. (#2214, #3136) - Minor: Remove TwitchEmotes.com attribution and the open/copy options when right-clicking a Twitch Emote. (#2214, #3136)
- Minor: Strip leading @ and trailing , from username in /user and /usercard commands. (#3143) - Minor: Strip leading @ and trailing , from username in /user and /usercard commands. (#3143)
- Minor: Display a system message when reloading subscription emotes to match BTTV/FFZ behavior (#3135) - Minor: Display a system message when reloading subscription emotes to match BTTV/FFZ behavior (#3135)
- Minor: Allow resub messages to show in `/mentions` tab (#3148)
- Minor: Added a setting to hide similar messages by any user. (#2716) - Minor: Added a setting to hide similar messages by any user. (#2716)
- Minor: Duplicate spaces now count towards the display message length. (#3002) - Minor: Duplicate spaces now count towards the display message length. (#3002)
- Bugfix: Restored ability to send duplicate `/me` messages. (#3166) - Bugfix: Restored ability to send duplicate `/me` messages. (#3166)

View file

@ -157,10 +157,6 @@ void SharedMessageBuilder::parseHighlights()
this->message().flags.set(MessageFlag::Highlighted); this->message().flags.set(MessageFlag::Highlighted);
this->message().highlightColor = this->message().highlightColor =
ColorProvider::instance().color(ColorType::Subscription); ColorProvider::instance().color(ColorType::Subscription);
// This message was a subscription.
// Don't check for any other highlight phrases.
return;
} }
// XXX: Non-common term in SharedMessageBuilder // XXX: Non-common term in SharedMessageBuilder
@ -220,7 +216,10 @@ void SharedMessageBuilder::parseHighlights()
<< "sent a message"; << "sent a message";
this->message().flags.set(MessageFlag::Highlighted); this->message().flags.set(MessageFlag::Highlighted);
this->message().highlightColor = userHighlight.getColor(); if (!this->message().flags.has(MessageFlag::Subscription))
{
this->message().highlightColor = userHighlight.getColor();
}
if (userHighlight.showInMentions()) if (userHighlight.showInMentions())
{ {
@ -289,7 +288,10 @@ void SharedMessageBuilder::parseHighlights()
} }
this->message().flags.set(MessageFlag::Highlighted); this->message().flags.set(MessageFlag::Highlighted);
this->message().highlightColor = highlight.getColor(); if (!this->message().flags.has(MessageFlag::Subscription))
{
this->message().highlightColor = highlight.getColor();
}
if (highlight.showInMentions()) if (highlight.showInMentions())
{ {
@ -344,7 +346,11 @@ void SharedMessageBuilder::parseHighlights()
if (!badgeHighlightSet) if (!badgeHighlightSet)
{ {
this->message().flags.set(MessageFlag::Highlighted); this->message().flags.set(MessageFlag::Highlighted);
this->message().highlightColor = highlight.getColor(); if (!this->message().flags.has(MessageFlag::Subscription))
{
this->message().highlightColor = highlight.getColor();
}
badgeHighlightSet = true; badgeHighlightSet = true;
} }

View file

@ -313,12 +313,9 @@ void IrcMessageHandler::addMessage(Communi::IrcMessage *_message,
const auto highlighted = msg->flags.has(MessageFlag::Highlighted); const auto highlighted = msg->flags.has(MessageFlag::Highlighted);
const auto showInMentions = msg->flags.has(MessageFlag::ShowInMentions); const auto showInMentions = msg->flags.has(MessageFlag::ShowInMentions);
if (!isSub) if (highlighted && showInMentions)
{ {
if (highlighted && showInMentions) server.mentionsChannel->addMessage(msg);
{
server.mentionsChannel->addMessage(msg);
}
} }
chan->addMessage(msg); chan->addMessage(msg);