Skip to content

Commit

Permalink
no need to send hash
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Vlachoyiannis committed Mar 30, 2011
1 parent 2b215e5 commit d86a4c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/sfalma/trace/Sfalma.java
Expand Up @@ -145,7 +145,7 @@ public static void submitError(int sTimeout, Date occuredAt, final String stackt

List <NameValuePair> nvps = new ArrayList <NameValuePair>();
nvps.add(new BasicNameValuePair("data", createJSON(G.APP_PACKAGE, G.APP_VERSION, G.PHONE_MODEL, G.ANDROID_VERSION, stacktrace, SfalmaHandler.isWifiOn(), SfalmaHandler.isMobileNetworkOn(), SfalmaHandler.isGPSOn(), occuredAt)));
nvps.add(new BasicNameValuePair("hash", MD5(stacktrace)));
//nvps.add(new BasicNameValuePair("hash", MD5(stacktrace)));

httpPost.setEntity(new UrlEncodedFormEntity(nvps, HTTP.UTF_8));

Expand Down

0 comments on commit d86a4c9

Please sign in to comment.