Skip to content

Commit e0321d4

Browse files
committed
fix MostCommon() calls
1 parent 77bdf16 commit e0321d4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

libNOM.io/Platform.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1693,7 +1693,6 @@ protected virtual string GetUserIdentification(JObject jsonObject, string key)
16931693
return string.Empty;
16941694

16951695
// ByBase is most reliable due to the BaseType, then BySettlement is second as it is still something you own, and ByDiscovery as last resort which can be a mess.
1696-
return GetUserIdentificationByBase(jsonObject, key).MostCommon() ?? GetUserIdentificationBySettlement(jsonObject, key).MostCommon() ?? GetUserIdentificationByDiscovery(jsonObject, key).MostCommon() ?? string.Empty;
16971696
return GetUserIdentificationByBase(jsonObject, key) ?? GetUserIdentificationBySettlement(jsonObject, key) ?? GetUserIdentificationByDiscovery(jsonObject, key) ?? string.Empty;
16981697
}
16991698

0 commit comments

Comments
 (0)