We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d286fef commit b74eeddCopy full SHA for b74eedd
lib/public/TaskProcessing/EShapeType.php
@@ -82,7 +82,7 @@ private function validateNonFileType(mixed $value): void {
82
*/
83
public function validateInput(mixed $value): void {
84
$this->validateNonFileType($value);
85
- if ($this === EShapeType::Text && is_string($value) && strlen($value) > 64_000) {
+ if ($this === EShapeType::Text && is_string($value) && strlen($value) > 512_000) {
86
throw new ValidationException('Text is too long');
87
}
88
if ($this === EShapeType::Image && !is_numeric($value)) {
0 commit comments