Fix Mastodon InstanceV2 structure needs image max size under mediaAttachment

This commit is contained in:
Hank Grabowski
2023-03-17 15:56:42 -04:00
parent 6e94220642
commit c609affeca
3 changed files with 8 additions and 9 deletions
@@ -32,12 +32,15 @@ class MediaAttachmentsConfig extends BaseDataTransferObject
{
/** @var string[] */
protected $supported_mime_types;
/** @var int */
protected $image_size_limit;
/**
* @param array $supported_mime_types
*/
public function __construct(array $supported_mime_types)
public function __construct(array $supported_mime_types, int $image_size_limit)
{
$this->supported_mime_types = $supported_mime_types;
$this->image_size_limit = $image_size_limit;
}
}