fix(CrawlService): Correct MAX_BODY_LENGTH from 90KB to 90 MB

fixes #1952

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2023-02-19 13:45:36 +01:00
parent 0386a561b2
commit a54ebb83e6
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ use OCP\Lock\LockedException;
use Psr\Log\LoggerInterface;
class CrawlService {
public const MAX_BODY_LENGTH = 92160; // 90 MiB
public const MAX_BODY_LENGTH = 92160000; // 90 MB
public const TIMEOUT = 10;
public const CONNECT_TIMEOUT = 10;
public const READ_TIMEOUT = 10;