Skip to content

Commit

Permalink
fix: actually save passwords again
Browse files Browse the repository at this point in the history
  • Loading branch information
goaaats committed Dec 2, 2022
1 parent 7f43fa0 commit eb7459a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XIVLauncher/Accounts/XivAccount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public string Password
// ignored
}

if (!string.IsNullOrWhiteSpace(Password))
if (!string.IsNullOrWhiteSpace(value))
{
CredentialManager.SaveCredentials($"{CREDS_PREFIX_NEW}-{UserName.ToLower()}", new NetworkCredential
{
Expand Down

0 comments on commit eb7459a

Please sign in to comment.