Skip to content

Commit

Permalink
fix ASF Version
Browse files Browse the repository at this point in the history
  • Loading branch information
AigioL committed Jul 21, 2022
1 parent cdee33f commit 81b6ab6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion references/ArchiSteamFarm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public async Task SetEncryptionKeyAsync()
Placeholder = ASF_CRYPTKEY,
InputType = TextBoxWindowViewModel.TextBoxInputType.Password,
});
var isUseDefaultCryptKey = string.IsNullOrEmpty(result) || ASF_CRYPTKEY_DEF_VALUE == result;
var isUseDefaultCryptKey = string.IsNullOrEmpty(result) || result == ASF_CRYPTKEY_DEF_VALUE;
if (!isUseDefaultCryptKey)
{
await ISecureStorage.Instance.SetAsync(ASF_CRYPTKEY, result);
Expand Down

0 comments on commit 81b6ab6

Please sign in to comment.