Skip to content

Commit b44a9b8

Browse files
authoredMar 10, 2025··
Merge pull request #2443 from zerotier:gl/onelogin-fix
Fix AuthInfo Provider not being set
2 parents 010c4b0 + f5b0fc6 commit b44a9b8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎controller/EmbeddedNetworkController.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1548,7 +1548,8 @@ void EmbeddedNetworkController::_request(
15481548
authInfo.add(ZT_AUTHINFO_DICT_KEY_CENTRAL_ENDPOINT_URL, info.centralAuthURL.c_str());
15491549
authInfo.add(ZT_AUTHINFO_DICT_KEY_NONCE, info.ssoNonce.c_str());
15501550
authInfo.add(ZT_AUTHINFO_DICT_KEY_STATE, info.ssoState.c_str());
1551-
authInfo.add(ZT_AUTHINFO_DICT_KEY_CLIENT_ID, info.ssoClientID.c_str());
1551+
authInfo.add(ZT_AUTHINFO_DICT_KEY_CLIENT_ID, info.ssoClientID.c_str());
1552+
authInfo.add(ZT_AUTHINFO_DICT_KEY_SSO_PROVIDER, info.ssoProvider.c_str());
15521553
_sender->ncSendError(nwid,requestPacketId,identity.address(),NetworkController::NC_ERROR_AUTHENTICATION_REQUIRED, authInfo.data(), authInfo.sizeBytes());
15531554
}
15541555
DB::cleanMember(member);

0 commit comments

Comments
 (0)
Please sign in to comment.