From 7195bd6cd65b76f491049751fc7cf9cd5638ce5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sun, 24 Sep 2023 14:46:51 +0200 Subject: [PATCH] Increased user avatar max file size from 2M to 5M --- src/Form/UserSettingsType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Form/UserSettingsType.php b/src/Form/UserSettingsType.php index 9a9615b4..05f63df4 100644 --- a/src/Form/UserSettingsType.php +++ b/src/Form/UserSettingsType.php @@ -93,7 +93,7 @@ class UserSettingsType extends AbstractType ], 'constraints' => [ new File([ - 'maxSize' => '2M', + 'maxSize' => '5M', ]), ], ])