From 56b7a3616fc1317af464c846b1ff091590b4488a Mon Sep 17 00:00:00 2001 From: fourtf Date: Sat, 5 Oct 2019 19:29:19 +0200 Subject: [PATCH] changed default port from 443 to 6697 --- src/providers/twitch/TwitchIrcServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/twitch/TwitchIrcServer.cpp b/src/providers/twitch/TwitchIrcServer.cpp index a8e7a230c..0c9bcf914 100644 --- a/src/providers/twitch/TwitchIrcServer.cpp +++ b/src/providers/twitch/TwitchIrcServer.cpp @@ -92,7 +92,7 @@ void TwitchIrcServer::initializeConnection(IrcConnection *connection, // SSL disabled: irc://irc.chat.twitch.tv:6667 (or port 80) // SSL enabled: irc://irc.chat.twitch.tv:6697 (or port 443) connection->setHost("irc.chat.twitch.tv"); - connection->setPort(443); + connection->setPort(6697); this->open(type); }