From ad8f960a8e78d35e8a2cd828ebf2117e154c63fe Mon Sep 17 00:00:00 2001 From: GongBingWong <123975332+GongBingWong@users.noreply.github.com> Date: Sun, 1 Oct 2023 01:56:03 -0400 Subject: [PATCH] Fix to interpret logger channel names as lowercase (#4848) Co-authored-by: Felanbird <41973452+Felanbird@users.noreply.github.com> Co-authored-by: Rasmus Karlsson --- CHANGELOG.md | 1 + src/controllers/logging/ChannelLog.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6261d626..d58bfa49a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/src/controllers/logging/ChannelLog.cpp b/src/controllers/logging/ChannelLog.cpp index a7d8ea04c..2c163050b 100644 --- a/src/controllers/logging/ChannelLog.cpp +++ b/src/controllers/logging/ChannelLog.cpp @@ -9,7 +9,7 @@ ChannelLog::ChannelLog(QString channelName) QString ChannelLog::channelName() const { - return this->channelName_; + return this->channelName_.toLower(); } QString ChannelLog::toString() const