Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Commit

Permalink
Bugfix additional authentication context
Browse files Browse the repository at this point in the history
  • Loading branch information
samwelkanda authored Sep 12, 2023
1 parent d1e1f5b commit 2f6e49e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kiota_http/httpx_request_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,9 +494,9 @@ async def get_http_response_message(

self.set_base_url_for_request_information(request_info)

additional_authentication_context = None
additional_authentication_context = {}
if claims:
additional_authentication_context = {self.CLAIMS_KEY: claims}
additional_authentication_context[self.CLAIMS_KEY] = claims

await self._authentication_provider.authenticate_request(
request_info, additional_authentication_context
Expand Down

0 comments on commit 2f6e49e

Please sign in to comment.