From e8cf990337a47a4c89571646e9a9aea2685feed1 Mon Sep 17 00:00:00 2001 From: Rasmus Karlsson Date: Sun, 8 Jan 2023 12:30:16 +0100 Subject: [PATCH] Fix link to the "connecting to the Twitch IRC server" guide --- 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 02231091f94..07c924dbc47 100644 --- a/src/providers/twitch/TwitchIrcServer.cpp +++ b/src/providers/twitch/TwitchIrcServer.cpp @@ -116,7 +116,7 @@ void TwitchIrcServer::initializeConnection(IrcConnection *connection, connection->setPassword(oauthToken); } - // https://dev.twitch.tv/docs/irc/guide/#connecting-to-twitch-irc + // https://dev.twitch.tv/docs/irc#connecting-to-the-twitch-irc-server // SSL disabled: irc://irc.chat.twitch.tv:6667 (or port 80) // SSL enabled: irc://irc.chat.twitch.tv:6697 (or port 443) connection->setHost(Env::get().twitchServerHost);