Skip to content

Commit 532c977

Browse files
🐛 Fix URL serialization in /invitations:extract endpoint (#6808)
1 parent a703f56 commit 532c977

File tree

1 file changed

+1
-1
lines changed
  • services/web/server/src/simcore_service_webserver/invitations

1 file changed

+1
-1
lines changed

services/web/server/src/simcore_service_webserver/invitations/_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ async def extract_invitation(
8484
) -> ApiInvitationContent:
8585
response = await self.client.post(
8686
url=self._url_vtag("/invitations:extract"),
87-
json={"invitation_url": invitation_url},
87+
json={"invitation_url": f"{invitation_url}"},
8888
)
8989
return ApiInvitationContent.model_validate(await response.json())
9090

0 commit comments

Comments
 (0)