Wrapped Strings::getBytesFromShorthand() around the last overseen DI::config()->get('system', 'maximagesize')

pull/1325/head
Marek Bachmann 2022-11-30 21:33:11 +01:00
parent 119a5ca8d8
commit efb98c8457
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ class qqFileUploader
// }
$maximagesize = DI::config()->get('system', 'maximagesize');
$maximagesize = Strings::getBytesFromShorthand(DI::config()->get('system', 'maximagesize'));
if (($maximagesize) && ($size > $maximagesize)) {
return ['error' => DI::l10n()->t('Image exceeds size limit of %s', Strings::formatBytes($maximagesize))];