mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Fix mentions tab
This commit is contained in:
parent
b693779c55
commit
4b52a98778
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ void IrcMessageHandler::addMessage(Communi::IrcMessage *message, const QString &
|
||||||
msg->flags |= messages::Message::Subscription;
|
msg->flags |= messages::Message::Subscription;
|
||||||
msg->flags &= ~messages::Message::Highlighted;
|
msg->flags &= ~messages::Message::Highlighted;
|
||||||
} else {
|
} else {
|
||||||
if (msg->flags & messages::Message::Subscription) {
|
if (msg->flags & messages::Message::Highlighted) {
|
||||||
server.mentionsChannel->addMessage(msg);
|
server.mentionsChannel->addMessage(msg);
|
||||||
getApp()->highlights->addHighlight(msg);
|
getApp()->highlights->addHighlight(msg);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue