Skip to content
Snippets Groups Projects
Commit ed63a326 authored by Jan Hartig's avatar Jan Hartig
Browse files

Merge branch 'develop' into 'main'

Fix exception on unmatched certs

See merge request !15
parents b1ccf69a 51d4f1fd
No related branches found
No related tags found
1 merge request!15Fix exception on unmatched certs
Pipeline #13166 passed
......@@ -39,7 +39,7 @@ async def cert2room(request):
match = re_dn.search(s_dn)
if not match:
raise Unauthorized
raise Unauthorized("Unauthorized")
# Get user's name from regex match
name = match.groups()[0]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment