From 3a8f91d6f6e0194bc3047e8beeb88d7daf4eb071 Mon Sep 17 00:00:00 2001 From: Rasmus Karlsson Date: Fri, 4 Oct 2019 13:06:15 +0200 Subject: [PATCH] Change default port from 6697 to 443 --- src/providers/twitch/TwitchIrcServer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/providers/twitch/TwitchIrcServer.cpp b/src/providers/twitch/TwitchIrcServer.cpp index 43981fb64..a8e7a230c 100644 --- a/src/providers/twitch/TwitchIrcServer.cpp +++ b/src/providers/twitch/TwitchIrcServer.cpp @@ -89,10 +89,10 @@ void TwitchIrcServer::initializeConnection(IrcConnection *connection, connection->setSecure(true); // https://dev.twitch.tv/docs/irc/guide/#connecting-to-twitch-irc - // SSL disabled: irc://irc.chat.twitch.tv:6667 - // SSL enabled: irc://irc.chat.twitch.tv:6697 + // 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); }