1
0
Fork 0

use round instead of floor to make imagesize <1M possible

This commit is contained in:
Jakobus Schürz 2023-03-15 14:33:42 +01:00
commit 512e5900e6
5 changed files with 7 additions and 7 deletions

View file

@ -242,7 +242,7 @@ class Compose extends BaseModule
]),
// Dropzone
'$max_imagesize' => floor(\Friendica\Util\Strings::getBytesFromShorthand(DI::config()->get('system', 'maximagesize')) / 1000000),
'$max_imagesize' => round(\Friendica\Util\Strings::getBytesFromShorthand(DI::config()->get('system', 'maximagesize')) / 1000000,1),
]);
}
}