mirror of https://github.com/BOINC/boinc.git
MGR: When clicking next on the project welcome page, only go to the account info page if neither the authenticator or setup cookie are present. Otherwise attempt to attach with either.
This commit is contained in:
parent
62d38d3d3c
commit
ee47ac8ef9
|
@ -196,7 +196,7 @@ wxWizardPageEx* CProjectWelcomePage::GetNext() const
|
|||
if (CHECK_CLOSINGINPROGRESS()) {
|
||||
// Cancel Event Detected
|
||||
return PAGE_TRANSITION_NEXT(ID_COMPLETIONERRORPAGE);
|
||||
} else if (pWA->GetProjectAuthenticator().IsEmpty()) {
|
||||
} else if (pWA->GetProjectAuthenticator().IsEmpty() && pWA->GetProjectSetupCookie().IsEmpty()) {
|
||||
return PAGE_TRANSITION_NEXT(ID_ACCOUNTINFOPAGE);
|
||||
} else {
|
||||
return PAGE_TRANSITION_NEXT(ID_PROJECTPROCESSINGPAGE);
|
||||
|
|
Loading…
Reference in New Issue