Skip to content

Commit 47e2443

Browse files
committed
Merge pull request android-async-http#17 from nuzelac/patch-1
Fix a call
2 parents cfa1814 + 28ff814 commit 47e2443

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public class TwitterRestClient {
8181
}
8282

8383
public static void post(String url, RequestParams params, AsyncHttpResponseHandler responseHandler) {
84-
client.get(getAbsoluteUrl(url), params, responseHandler);
84+
client.post(getAbsoluteUrl(url), params, responseHandler);
8585
}
8686

8787
private static String getAbsoluteUrl(String relativeUrl) {

0 commit comments

Comments
 (0)