From 5a956ff65500e34161a0e563595f95799175fe24 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 db1b722cd..3530a454f 100644 --- a/Linphone/model/auth/OIDCModel.cpp +++ b/Linphone/model/auth/OIDCModel.cpp @@ -238,7 +238,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: {