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 04cdee6 commit 44adc9eCopy full SHA for 44adc9e
backend/btrixcloud/invites.py
@@ -214,7 +214,7 @@ async def invite_user(
214
created=dt_now(),
215
role=invite.role if hasattr(invite, "role") else UserRole.VIEWER,
216
# URL decode email address just in case
217
- email=EmailStr(urllib.parse.unquote(invite.email)),
+ email=urllib.parse.unquote(invite.email),
218
inviterEmail=user.email,
219
fromSuperuser=user.is_superuser,
220
tokenHash=get_hash(invite_token),
0 commit comments