We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3480287 commit b47ce2cCopy full SHA for b47ce2c
services/web/server/src/simcore_service_webserver/invitations/_service.py
@@ -149,9 +149,9 @@ async def generate_invitation(
149
app=app
150
).generate_invitation(params)
151
152
- _tmp_url = URL(f"{invitation.invitation_url}")
+ _normalized_url = URL(f"{invitation.invitation_url}")
153
invitation.invitation_url = HttpUrl(
154
- f"{product_origin_url.with_path(_tmp_url.path).with_fragment(_tmp_url.raw_fragment)}"
+ f"{product_origin_url.with_path(_normalized_url.path).with_fragment(_normalized_url.raw_fragment)}"
155
)
156
157
return invitation
0 commit comments