Skip to content

Commit

Permalink
Enable SSL for the Twitch IRC connection.
Browse files Browse the repository at this point in the history
  • Loading branch information
kosayoda committed Jul 29, 2023
1 parent 340afc3 commit 74d13dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/twitch/connection.rs
Expand Up @@ -19,8 +19,8 @@ async fn create_client_stream(config: CompleteConfig) -> Result<(Client, ClientS
server: Some(config.twitch.server.clone()),
channels: vec![format!("#{}", config.twitch.channel)],
password: config.twitch.token.clone(),
port: Some(6667),
use_tls: Some(false),
port: Some(6697),
use_tls: Some(true),
ping_timeout: Some(10),
ping_time: Some(10),
..Default::default()
Expand Down

0 comments on commit 74d13dd

Please sign in to comment.