Change CHATTERINO2_TWITCH_SERVER_PORT env default to 443 (#1513)

This commit is contained in:
Marcin Moskal 2020-01-24 21:30:35 +01:00 committed by fourtf
parent f87e008679
commit 809b63bb5e

View file

@ -59,7 +59,7 @@ Env::Env()
"https://braize.pajlada.com/chatterino/twitchemotes/set/%1/"))
, twitchServerHost(
readStringEnv("CHATTERINO2_TWITCH_SERVER_HOST", "irc.chat.twitch.tv"))
, twitchServerPort(readPortEnv("CHATTERINO2_TWITCH_SERVER_PORT", 6697))
, twitchServerPort(readPortEnv("CHATTERINO2_TWITCH_SERVER_PORT", 443))
, twitchServerSecure(readBoolEnv("CHATTERINO2_TWITCH_SERVER_SECURE", true))
{
}