From c2107437e2992ace2c57d74dc0c7937c14283037 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 6659fe498..49c6464dc 100644 --- a/Linphone/model/auth/OIDCModel.cpp +++ b/Linphone/model/auth/OIDCModel.cpp @@ -229,7 +229,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: {