Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Files/View.php')
-rw-r--r--lib/private/Files/View.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Files/View.php b/lib/private/Files/View.php
index 20c0fd3ed1b..a5f93b4b73c 100644
--- a/lib/private/Files/View.php
+++ b/lib/private/Files/View.php
@@ -423,7 +423,7 @@ class View {
@ob_end_clean();
$handle = $this->fopen($path, 'rb');
if ($handle) {
- $chunkSize = 8192; // 8 kB chunks
+ $chunkSize = 512000; // 500 kB chunks
while (!feof($handle)) {
echo fread($handle, $chunkSize);
flush();
@@ -447,7 +447,7 @@ class View {
@ob_end_clean();
$handle = $this->fopen($path, 'rb');
if ($handle) {
- $chunkSize = 8192; // 8 kB chunks
+ $chunkSize = 512000; // 500 kB chunks
$startReading = true;
if ($from !== 0 && $from !== '0' && fseek($handle, $from) !== 0) {