changed default port from 443 to 6697

This commit is contained in:
fourtf 2019-10-05 19:29:19 +02:00
parent 16b2b2458c
commit 56b7a3616f

View file

@ -92,7 +92,7 @@ void TwitchIrcServer::initializeConnection(IrcConnection *connection,
// SSL disabled: irc://irc.chat.twitch.tv:6667 (or port 80) // SSL disabled: irc://irc.chat.twitch.tv:6667 (or port 80)
// SSL enabled: irc://irc.chat.twitch.tv:6697 (or port 443) // SSL enabled: irc://irc.chat.twitch.tv:6697 (or port 443)
connection->setHost("irc.chat.twitch.tv"); connection->setHost("irc.chat.twitch.tv");
connection->setPort(443); connection->setPort(6697);
this->open(type); this->open(type);
} }