From c4625c6c94bd5216c9ba0e4c969bbcebc9260f59 Mon Sep 17 00:00:00 2001 From: Andreas Coroiu Date: Thu, 25 Jan 2024 14:50:13 +0100 Subject: [PATCH] [PM-5819] fix: return empty string if name is null (#3691) --- .../GetWebAuthnLoginCredentialCreateOptionsCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Auth/UserFeatures/WebAuthnLogin/Implementations/GetWebAuthnLoginCredentialCreateOptionsCommand.cs b/src/Core/Auth/UserFeatures/WebAuthnLogin/Implementations/GetWebAuthnLoginCredentialCreateOptionsCommand.cs index 1d47afb03c..16737d85a0 100644 --- a/src/Core/Auth/UserFeatures/WebAuthnLogin/Implementations/GetWebAuthnLoginCredentialCreateOptionsCommand.cs +++ b/src/Core/Auth/UserFeatures/WebAuthnLogin/Implementations/GetWebAuthnLoginCredentialCreateOptionsCommand.cs @@ -21,7 +21,7 @@ internal class GetWebAuthnLoginCredentialCreateOptionsCommand : IGetWebAuthnLogi { var fidoUser = new Fido2User { - DisplayName = user.Name, + DisplayName = user.Name ?? "", Name = user.Email, Id = user.Id.ToByteArray(), };