Skip to content

Commit

Permalink
Fix to interpret logger channel names as lowercase (#4848)
Browse files Browse the repository at this point in the history
Co-authored-by: Felanbird <[email protected]>
Co-authored-by: Rasmus Karlsson <[email protected]>
  • Loading branch information
3 people authored Oct 1, 2023
1 parent 916427a commit ad8f960
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Minor: The account switcher is now styled to match your theme. (#4817)
- Minor: Add an invisible resize handle to the bottom of frameless user info popups and reply thread popups. (#4795)
- Minor: The installer now checks for the VC Runtime version and shows more info when it's outdated. (#4847)
- Bugfix: Fixed capitalized channel names in log inclusion list not being logged. (#4848)
- Bugfix: Trimmed custom streamlink paths on all platforms making sure you don't accidentally add spaces at the beginning or end of its path. (#4834)
- Bugfix: Fixed a performance issue when displaying replies to certain messages. (#4807)
- Bugfix: Fixed a data race when disconnecting from Twitch PubSub. (#4771)
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/logging/ChannelLog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ChannelLog::ChannelLog(QString channelName)

QString ChannelLog::channelName() const
{
return this->channelName_;
return this->channelName_.toLower();
}

QString ChannelLog::toString() const
Expand Down

0 comments on commit ad8f960

Please sign in to comment.