Browse Source

compare compressed snap file size instead of document download size

main
yggverse 8 months ago
parent
commit
488e090f97
  1. 8
      src/cli/document/crawl.php

8
src/cli/document/crawl.php

@ -760,6 +760,10 @@ foreach($index->search('')
$tmp $tmp
); );
$filesize = filesize(
$tmp
);
// Copy to local storage on enabled // Copy to local storage on enabled
if ($config->snap->storage->local->enabled) if ($config->snap->storage->local->enabled)
{ {
@ -794,7 +798,7 @@ foreach($index->search('')
{ {
$allowed = false; $allowed = false;
if ($size <= $config->snap->storage->local->size->max) if ($filesize <= $config->snap->storage->local->size->max)
{ {
$allowed = true; $allowed = true;
} }
@ -937,7 +941,7 @@ foreach($index->search('')
// Check size limits // Check size limits
$allowed = false; $allowed = false;
if ($size <= $ftp->size->max) if ($filesize <= $ftp->size->max)
{ {
$allowed = true; $allowed = true;
} }

Loading…
Cancel
Save