Skip to content

Commit

Permalink
Revert "Fix Twitch-specific filters not being applied (#4107)"
Browse files Browse the repository at this point in the history
This reverts commit 0500821.
  • Loading branch information
pajlada committed Nov 4, 2022
1 parent e3e1845 commit 41409bf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@
- Bugfix: Fixed channel-based popups from rewriting messages to file log (#4060)
- Bugfix: Fixed invalid/dangling completion when cycling through previous messages or replying (#4072)
- Bugfix: Fixed incorrect .desktop icon path. (#4078)
- Bugfix: Fixed Twitch channel-specific filters not being applied correctly. (#4107)
- Dev: Removed official support for QMake. (#3839, #3883)
- Dev: Rewrote LimitedQueue (#3798)
- Dev: Overhauled highlight system by moving all checks into a Controller allowing for easier tests. (#3399, #3801, #3835)
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/helper/ChannelView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ bool ChannelView::shouldIncludeMessage(const MessagePtr &m) const
m->loginName, Qt::CaseInsensitive) == 0)
return true;

return this->channelFilters_->filter(m, this->underlyingChannel_);
return this->channelFilters_->filter(m, this->channel_);
}

return true;
Expand Down

0 comments on commit 41409bf

Please sign in to comment.