Skip to content

Commit

Permalink
Merge pull request #56 from nlevitt/fix-form-login
Browse files Browse the repository at this point in the history
fix FormLoginProcessor checkpointing
  • Loading branch information
vonrosen committed Apr 3, 2014
2 parents 2035009 + 36a207c commit 030063f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -294,8 +294,8 @@ protected String submitStatusFor(String formProvince) {
@Override
protected JSONObject toCheckpointJson() throws JSONException {
JSONObject json = super.toCheckpointJson();
json.put("eligibleFormsAttemptsCount", eligibleFormsAttemptsCount);
json.put("eligibleFormsSeenCount", eligibleFormsSeenCount);
json.put("eligibleFormsAttemptsCount", eligibleFormsAttemptsCount.asMap());
json.put("eligibleFormsSeenCount", eligibleFormsSeenCount.asMap());
return json;
}

Expand Down

0 comments on commit 030063f

Please sign in to comment.