Set username back to having a value

This commit is contained in:
Eric Green
2016-02-15 12:08:29 -06:00
parent 57dcb5863c
commit 3b027098d7

View File

@@ -39,6 +39,7 @@ namespace Owin.Security.Providers.LinkedIn
FamilyName = TryGetValue(user, "lastName");
GivenName = TryGetValue(user, "firstName");
Link = TryGetValue(user, "publicProfileUrl");
UserName = TryGetValue(user, "formattedName").Replace(" ", "");
Email = TryGetValue(user, "emailAddress");
}