diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/OCSClient.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/OCSClient.php b/lib/private/OCSClient.php index a783a1f8425..da2f5c61769 100644 --- a/lib/private/OCSClient.php +++ b/lib/private/OCSClient.php @@ -128,7 +128,7 @@ class OCSClient { $response = $client->get( $this->getAppStoreUrl() . '/content/categories', [ - 'timeout' => 5, + 'timeout' => 20, 'query' => [ 'version' => implode('x', $targetVersion), ], @@ -179,7 +179,7 @@ class OCSClient { $response = $client->get( $this->getAppStoreUrl() . '/content/data', [ - 'timeout' => 5, + 'timeout' => 20, 'query' => [ 'version' => implode('x', $targetVersion), 'filter' => $filter, @@ -256,7 +256,7 @@ class OCSClient { $response = $client->get( $this->getAppStoreUrl() . '/content/data/' . urlencode($id), [ - 'timeout' => 5, + 'timeout' => 20, 'query' => [ 'version' => implode('x', $targetVersion), ], @@ -321,7 +321,7 @@ class OCSClient { $response = $client->get( $url, [ - 'timeout' => 5, + 'timeout' => 20, 'query' => [ 'version' => implode('x', $targetVersion), ], |