Skip to content
Snippets Groups Projects

3306916 only validate file size on new uploads.

Closed Sara Cartee requested to merge issue/drupal-3306916:3306916-check-for-new-d11 into 11.x
2 files
+ 11
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -49,7 +49,7 @@ public function validate(mixed $value, Constraint $constraint): void {
$fileLimit = $constraint->fileLimit;
if ($fileLimit && $file->getSize() > $fileLimit) {
if ($file->isNew() && $fileLimit && $file->getSize() > $fileLimit) {
$this->context->addViolation($constraint->maxFileSizeMessage, [
'%filesize' => ByteSizeMarkup::create($file->getSize()),
'%maxsize' => ByteSizeMarkup::create($fileLimit),
Loading