From c6e1a1de2e1e5450c67c34ec58925f596cb48ed6 Mon Sep 17 00:00:00 2001 From: fourtf Date: Sat, 5 Oct 2019 19:42:46 +0200 Subject: [PATCH] Revert "changed default port from 443 to 6697" It doens't appear to be the issue that builds aren't working This reverts commit 56b7a3616fc1317af464c846b1ff091590b4488a. --- 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 0c9bcf91..a8e7a230 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(6697); + connection->setPort(443); this->open(type); }