mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-23 12:51:16 +00:00
Bugfix: Request parameters are duplicated over and over if request is repeated.
This commit is contained in:
parent
867e5d1ede
commit
cd2d67e93e
1 changed files with 6 additions and 5 deletions
|
@ -55,14 +55,15 @@ public class GetTask extends AsyncTask<String, Void, String> {
|
||||||
String fullUri = params[0] + params[1];
|
String fullUri = params[0] + params[1];
|
||||||
Log.v(TAG, "Calling Rest API at " + fullUri);
|
Log.v(TAG, "Calling Rest API at " + fullUri);
|
||||||
|
|
||||||
|
if (params.length == 5) {
|
||||||
|
LinkedList<NameValuePair> urlParams = new LinkedList<>();
|
||||||
|
urlParams.add(new BasicNameValuePair(params[3], params[4]));
|
||||||
|
fullUri += "?" + URLEncodedUtils.format(urlParams, HTTP.UTF_8);
|
||||||
|
}
|
||||||
|
|
||||||
// Retry at most 10 times before failing
|
// Retry at most 10 times before failing
|
||||||
for (int i = 0; i < 10; i++) {
|
for (int i = 0; i < 10; i++) {
|
||||||
HttpClient httpclient = Https.createHttpsClient(mHttpsCertPath);
|
HttpClient httpclient = Https.createHttpsClient(mHttpsCertPath);
|
||||||
if (params.length == 5) {
|
|
||||||
LinkedList<NameValuePair> urlParams = new LinkedList<>();
|
|
||||||
urlParams.add(new BasicNameValuePair(params[3], params[4]));
|
|
||||||
fullUri += "?" + URLEncodedUtils.format(urlParams, HTTP.UTF_8);
|
|
||||||
}
|
|
||||||
HttpGet get = new HttpGet(fullUri);
|
HttpGet get = new HttpGet(fullUri);
|
||||||
get.addHeader(new BasicHeader(RestApi.HEADER_API_KEY, params[2]));
|
get.addHeader(new BasicHeader(RestApi.HEADER_API_KEY, params[2]));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue