Skip to content
Snippets Groups Projects

GREG-232: Fixing wrong error message

Merged Tore.Brede requested to merge GREG-232_wrong_error_message_identity_check_uib into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -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
Loading