mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Fix Twitch-specific filters not being applied (#4107)
This commit is contained in:
parent
fcf3f2d88b
commit
05008214fa
|
@ -102,6 +102,7 @@
|
||||||
- Bugfix: Fixed channel-based popups from rewriting messages to file log (#4060)
|
- 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 invalid/dangling completion when cycling through previous messages or replying (#4072)
|
||||||
- Bugfix: Fixed incorrect .desktop icon path. (#4078)
|
- 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: Removed official support for QMake. (#3839, #3883)
|
||||||
- Dev: Rewrote LimitedQueue (#3798)
|
- Dev: Rewrote LimitedQueue (#3798)
|
||||||
- Dev: Overhauled highlight system by moving all checks into a Controller allowing for easier tests. (#3399, #3801, #3835)
|
- Dev: Overhauled highlight system by moving all checks into a Controller allowing for easier tests. (#3399, #3801, #3835)
|
||||||
|
|
|
@ -809,7 +809,7 @@ bool ChannelView::shouldIncludeMessage(const MessagePtr &m) const
|
||||||
m->loginName, Qt::CaseInsensitive) == 0)
|
m->loginName, Qt::CaseInsensitive) == 0)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
return this->channelFilters_->filter(m, this->channel_);
|
return this->channelFilters_->filter(m, this->underlyingChannel_);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue