From 7e073f43b622d83aa55cf1d36b29fd8742b1bc03 Mon Sep 17 00:00:00 2001 From: Rasmus Karlsson Date: Sun, 7 Oct 2018 12:17:11 +0000 Subject: [PATCH] fix notices about "short channel name" channels being sent to all channels Fixes #770 --- src/providers/twitch/TwitchHelpers.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/providers/twitch/TwitchHelpers.cpp b/src/providers/twitch/TwitchHelpers.cpp index 9999e125c..32317c940 100644 --- a/src/providers/twitch/TwitchHelpers.cpp +++ b/src/providers/twitch/TwitchHelpers.cpp @@ -5,8 +5,8 @@ namespace chatterino { bool trimChannelName(const QString &channelName, QString &outChannelName) { - if (channelName.length() < 3) { - log("channel name length below 3"); + if (channelName.length() < 2) { + log("channel name length below 2"); return false; }