Skip to content

Commit

Permalink
πŸ› Fix URL serialization in /invitations:extract endpoint (#6808)
Browse files Browse the repository at this point in the history
  • Loading branch information
giancarloromeo authored Nov 25, 2024
1 parent a703f56 commit 532c977
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ async def extract_invitation(
) -> ApiInvitationContent:
response = await self.client.post(
url=self._url_vtag("/invitations:extract"),
json={"invitation_url": invitation_url},
json={"invitation_url": f"{invitation_url}"},
)
return ApiInvitationContent.model_validate(await response.json())

Expand Down

0 comments on commit 532c977

Please sign in to comment.