Fix setup without a passkey for new manifests
PromptSetupPassKey was never being called with inAccountSetupProcess=true.
This commit is contained in:
parent
a252a4b019
commit
bdba870c9e
1 changed files with 1 additions and 1 deletions
|
@ -403,7 +403,7 @@ namespace SteamGuard
|
|||
if (Manifest.Entries.Count == 0)
|
||||
{
|
||||
Console.WriteLine("Looks like we are setting up your first account.");
|
||||
passKey = Manifest.PromptSetupPassKey();
|
||||
passKey = Manifest.PromptSetupPassKey(true);
|
||||
}
|
||||
else if (Manifest.Entries.Count > 0 && Manifest.Encrypted)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue