From 14a959ef57cea9bf7d73c89b24fd4f22e5c69df3 Mon Sep 17 00:00:00 2001 From: Jehan Monnier Date: Wed, 16 Jul 2025 13:51:45 +0200 Subject: [PATCH] remove login_hint as most of the time it's unrelated to sip username --- Linphone/model/auth/OIDCModel.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Linphone/model/auth/OIDCModel.cpp b/Linphone/model/auth/OIDCModel.cpp index 0754697d8..516f98af1 100644 --- a/Linphone/model/auth/OIDCModel.cpp +++ b/Linphone/model/auth/OIDCModel.cpp @@ -237,7 +237,6 @@ OIDCModel::OIDCModel(const std::shared_ptr &authInfo, QObjec // in case we want to add parameters. Needed to override redirect_url mOidc.setModifyParametersFunction([&, username = Utils::coreStringToAppString(authInfo->getUsername())]( QAbstractOAuth::Stage stage, QMultiMap *parameters) { - parameters->insert("login_hint", username); parameters->replace("application_type", "native"); switch (stage) { case QAbstractOAuth::Stage::RequestingAccessToken: {