Skip to content

Commit

Permalink
Fix issue where keys are getting cleared (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
abowen authored Nov 22, 2023
1 parent 5741b1f commit ec07433
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 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 = "steam-tui"
version = "0.2.1"
version = "0.2.2"
description = "TUI client for steamcmd."
readme = "README.md"
authors = ["madisetti <[email protected]>"]
Expand Down
4 changes: 4 additions & 0 deletions src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,10 @@ fn execute(
}
["licenses_print"] => {
// Extract licenses
if response == "[0m" {
continue;
}

games = Vec::new();
let licenses = response.to_string();
let keys = keys_from_licenses(licenses);
Expand Down

0 comments on commit ec07433

Please sign in to comment.