Skip to content

Commit

Permalink
Merge pull request #6977 from nextcloud/backport/6888/stable-3.13
Browse files Browse the repository at this point in the history
[stable-3.13] Bugfix/signup with provider page
  • Loading branch information
mgallien authored Aug 7, 2024
2 parents abef54b + 8d698df commit 529092c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/gui/owncloudsetupwizard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,9 @@ void OwncloudSetupWizard::slotConnectToOCUrl(const QString &url)
{
qCInfo(lcWizard) << "Connect to url: " << url;
AbstractCredentials *creds = _ocWizard->getCredentials();
_ocWizard->account()->setCredentials(creds);
if (creds) {
_ocWizard->account()->setCredentials(creds);
}

const auto fetchUserNameJob = new JsonApiJob(_ocWizard->account()->sharedFromThis(), QStringLiteral("/ocs/v1.php/cloud/user"));
connect(fetchUserNameJob, &JsonApiJob::jsonReceived, this, [this, url](const QJsonDocument &json, int statusCode) {
Expand Down
2 changes: 1 addition & 1 deletion src/gui/wizard/welcomepage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ void WelcomePage::setupCreateAccountButton()
connect(_ui->createAccountButton, &QPushButton::clicked, this, [this](bool /*checked*/) {
_ocWizard->setRegistration(true);
_nextPage = WizardCommon::Page_WebView;
_ocWizard->next();
_ocWizard->setAuthType(OCC::DetermineAuthTypeJob::WebViewFlow);
});
#else // WITH_WEBENGINE
connect(_ui->createAccountButton, &QPushButton::clicked, this, [this](bool /*checked*/) {
Expand Down

0 comments on commit 529092c

Please sign in to comment.