Add #channel in mentions usercard and search popup (#2802)

This commit is contained in:
Tal Neoran 2021-05-22 16:11:24 +03:00 committed by GitHub
parent ddba279ff7
commit 14e8a2bf6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -2,6 +2,7 @@
## Unversioned ## Unversioned
- Minor: Made "#channel" in `/mentions` tab show in usercards and in the search popup. (#2802)
- Minor: Added settings to disable custom FrankerFaceZ VIP/mod badges. (#2693, #2759) - Minor: Added settings to disable custom FrankerFaceZ VIP/mod badges. (#2693, #2759)
## 2.3.2 ## 2.3.2

View file

@ -1013,6 +1013,9 @@ MessageElementFlags ChannelView::getFlags() const
} }
} }
if (this->sourceChannel_ == app->twitch.server->mentionsChannel)
flags.set(MessageElementFlag::ChannelName);
return flags; return flags;
} }