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.
2 parents e2ea834 + 8befcdb commit 52af524Copy full SHA for 52af524
src/ECER.Resources.Documents/PortalInvitations/PortalInvitationRepositoryMapper.cs
@@ -28,11 +28,11 @@ public PortalInvitationMapper()
28
29
private static InviteType? DetermineInviteType(ecer_PortalInvitation source)
30
{
31
- if (string.IsNullOrEmpty(source.ecer_WorkExperienceReferenceIdName))
+ if (source.ecer_WorkExperienceReferenceId != null)
32
33
return InviteType.WorkExperienceReference;
34
}
35
- else if(string.IsNullOrEmpty(source.ecer_CharacterReferenceIdName))
+ else if(source.ecer_CharacterReferenceId != null)
36
37
return InviteType.CharacterReference;
38
0 commit comments