1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-07 16:06:08 +00:00

make initial connection using connection validator work

This commit is contained in:
Schabi 2021-09-10 10:44:06 +02:00 committed by Christian Schabesberger
parent ddb15a33f1
commit 8d09a5c242

View File

@ -120,6 +120,7 @@ public class OwnCloudClient extends HttpClient {
boolean retry = false; boolean retry = false;
do { do {
retry = false;
String requestId = RandomUtils.generateRandomUUID(); String requestId = RandomUtils.generateRandomUUID();
// Header to allow tracing requests in apache and ownCloud logs // Header to allow tracing requests in apache and ownCloud logs
@ -151,7 +152,6 @@ public class OwnCloudClient extends HttpClient {
*/ */
} while (retry); } while (retry);
// } while (retry);
return status; return status;
} }