Hide category labels when searching in Viewer list (#3719)

This fixed a bug introduced in #3683

Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
This commit is contained in:
badoge 2022-05-28 15:11:51 +04:00 committed by GitHub
parent 3e1e30e4c2
commit 135f914b38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@
- Minor: Fixed being unable to load Twitch Usercards from the `/mentions` tab. (#3623) - Minor: Fixed being unable to load Twitch Usercards from the `/mentions` tab. (#3623)
- Minor: Add information about the user's operating system in the About page. (#3663) - Minor: Add information about the user's operating system in the About page. (#3663)
- Bugfix: Connection to Twitch PubSub now recovers more reliably. (#3643, #3716) - Bugfix: Connection to Twitch PubSub now recovers more reliably. (#3643, #3716)
- Minor: Added chatter count for each category in viewer list. (#3683) - Minor: Added chatter count for each category in viewer list. (#3683, #3719)
- Minor: Sorted usernames in /vips message to be case-insensitive. (#3696) - Minor: Sorted usernames in /vips message to be case-insensitive. (#3696)
- Minor: Added option to open a user's chat in a new tab from the usercard profile picture context menu. (#3625) - Minor: Added option to open a user's chat in a new tab from the usercard profile picture context menu. (#3625)
- Minor: Fixed tag parsing for consecutive escaped characters. (#3711) - Minor: Fixed tag parsing for consecutive escaped characters. (#3711)

View file

@ -1037,7 +1037,7 @@ void Split::showViewerList()
resultList->clear(); resultList->clear();
for (auto &item : results) for (auto &item : results)
{ {
if (!labels.contains(item->text())) if (!item->text().contains("("))
{ {
resultList->addItem(formatListItemText(item->text())); resultList->addItem(formatListItemText(item->text()));
} }