Skip to content

Commit

Permalink
Merge pull request mozilla#1786 from cascheberg/fix-npe
Browse files Browse the repository at this point in the history
Fix NPE
  • Loading branch information
crankycoder committed Apr 29, 2016
2 parents 692b01b + 9ab917a commit 023fe75
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public IResponse submit(byte[] data, Map<String, String> headers, boolean precom
Log.d(LOG_TAG, "Sending leaderboard data: " + sData);

IResponse resp = httpDelegate.post(submit_url, data, headers, precompressed);
Log.d(LOG_TAG, "Got response: " + resp.httpStatusCode());
Log.d(LOG_TAG, "Got response: " + (resp != null ? resp.httpStatusCode() : "null"));
return resp;
}
}
Expand Down

0 comments on commit 023fe75

Please sign in to comment.