1
0
mirror of synced 2026-05-22 21:53:18 +00:00

fix spelling

This commit is contained in:
Hongwei Peng
2019-07-17 21:34:41 +08:00
parent 8d1f700e7f
commit 0ed3092d53
13 changed files with 15 additions and 15 deletions
@@ -77,7 +77,7 @@ public class AuthRenrenRequest extends AuthDefaultRequest {
private AuthUserGender getGender(JSONObject userObj) {
JSONObject basicInformation = userObj.getJSONObject("basicInformation");
if (Objects.isNull(basicInformation)) {
return AuthUserGender.UNKNOW;
return AuthUserGender.UNKNOWN;
}
return AuthUserGender.getRealGender(basicInformation.getString("sex"));
}