mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Change default port from 6697 to 443
This commit is contained in:
parent
2284b713c1
commit
3a8f91d6f6
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue