Commit 4c4ed94 1 parent 94325ed commit 4c4ed94 Copy full SHA for 4c4ed94
File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change
1
+ Bugfix: Fix wrong option provided to OIDC
2
+
3
+ We fixed a bug where we passed a wrong value to the OIDC display parameter
4
+
5
+ https://github.com/owncloud/client/issues/8390
Original file line number Diff line number Diff line change @@ -306,8 +306,7 @@ QUrl OAuth::authorisationLink() const
306
306
{ QStringLiteral (" code_challenge_method" ), QStringLiteral (" S256" ) },
307
307
{ QStringLiteral (" scope" ), Theme::instance ()->openIdConnectScopes () },
308
308
{ QStringLiteral (" prompt" ), Theme::instance ()->openIdConnectPrompt () },
309
- { QStringLiteral (" state" ), QString::fromUtf8 (_state) },
310
- { QStringLiteral (" display" ), Theme::instance ()->appNameGUI () } });
309
+ { QStringLiteral (" state" ), QString::fromUtf8 (_state) } });
311
310
312
311
if (!_account->davUser ().isNull ()) {
313
312
const QString davUser = _account->davUser ().replace (QLatin1Char (' +' ), QStringLiteral (" %2B" )); // Issue #7762;
You can’t perform that action at this time.
0 commit comments