Skip to content

Commit

Permalink
2.6.7 -> 2.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Xithrius committed May 12, 2024
1 parent a1bf3ff commit 42a11fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "twitch-tui"
version = "2.6.7"
version = "2.6.8"
authors = ["Xithrius <[email protected]>"]
edition = "2021"
rust-version = "1.75.0"
Expand Down
2 changes: 1 addition & 1 deletion src/handlers/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ impl CompleteConfig {
let token = env::var("TWT_TOKEN").ok();
if let Some(env_token) = token {
if !env_token.is_empty() {
config.twitch.token = Some(env_token.to_string());
config.twitch.token = Some(env_token);
}
}

Expand Down

0 comments on commit 42a11fd

Please sign in to comment.