Skip to content

Commit

Permalink
Merge pull request #57 from migueldiogo/master
Browse files Browse the repository at this point in the history
Fix for Issue #56
  • Loading branch information
thiagolocatelli committed Dec 29, 2015
2 parents 036c44c + 12fd97c commit 5feb26a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/parse4j/ParseUser.java
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public static ParseUser login(String username, String password) throws ParseExce
jsonResponse.remove(ParseConstants.FIELD_CREATED_AT);
jsonResponse.remove(ParseConstants.FIELD_UPDATED_AT);
jsonResponse.remove(ParseConstants.FIELD_SESSION_TOKEN);
parseUser.setData(jsonResponse, true);
parseUser.setData(jsonResponse, false);
return parseUser;

}catch (JSONException e) {
Expand Down

0 comments on commit 5feb26a

Please sign in to comment.