Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2021-01-25 15:53:40 +0300
committerGitHub <noreply@github.com>2021-01-25 15:53:40 +0300
commit2519a0bd0cf2edc9a0109ea86ded1238d3f48b99 (patch)
treeb79552c9867b40d8fa274fab01dcb415ab94864e /src
parent94325edc72c0796abadc3d3ae52eac1bfce64f8c (diff)
Fix OIDC display (#8391)
Fixes: #8390
Diffstat (limited to 'src')
-rw-r--r--src/libsync/creds/oauth.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libsync/creds/oauth.cpp b/src/libsync/creds/oauth.cpp
index 6e009ce31..698728df6 100644
--- a/src/libsync/creds/oauth.cpp
+++ b/src/libsync/creds/oauth.cpp
@@ -306,8 +306,7 @@ QUrl OAuth::authorisationLink() const
{ QStringLiteral("code_challenge_method"), QStringLiteral("S256") },
{ QStringLiteral("scope"), Theme::instance()->openIdConnectScopes() },
{ QStringLiteral("prompt"), Theme::instance()->openIdConnectPrompt() },
- { QStringLiteral("state"), QString::fromUtf8(_state) },
- { QStringLiteral("display"), Theme::instance()->appNameGUI() } });
+ { QStringLiteral("state"), QString::fromUtf8(_state) } });
if (!_account->davUser().isNull()) {
const QString davUser = _account->davUser().replace(QLatin1Char('+'), QStringLiteral("%2B")); // Issue #7762;