Skip to content
Snippets Groups Projects
Commit 3d89b047 authored by Tore.Brede's avatar Tore.Brede
Browse files

Merge branch 'GREG-232_wrong_error_message_identity_check_uib' into 'master'

GREG-232: Fixing wrong error message

See merge request !303
parents 4d82d2bf 9b3361dd
No related branches found
No related tags found
1 merge request!303GREG-232: Fixing wrong error message
Pipeline #121779 passed
...@@ -20,7 +20,7 @@ class UibSebra(IgaImplementation): ...@@ -20,7 +20,7 @@ class UibSebra(IgaImplementation):
) -> Optional[IgaPerson]: ) -> Optional[IgaPerson]:
search = self.idtype_methodmap.get(id_type) search = self.idtype_methodmap.get(id_type)
if not search: if not search:
return [] return None
user: User = search(extid) user: User = search(extid)
if not user: if not user:
return None return None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment