forked from friendica/friendica-addons
Bluesky/Twitter: New parameter added for rhe picture creation
This commit is contained in:
parent
52ea77eabb
commit
f678468d42
|
@ -896,7 +896,7 @@ function bluesky_upload_blob(int $uid, array $photo): ?stdClass
|
|||
$retrial = Worker::getRetrial();
|
||||
$content = Photo::getImageForPhoto($photo);
|
||||
|
||||
$picture = new Image($content, $photo['type']);
|
||||
$picture = new Image($content, $photo['type'], $photo['filename']);
|
||||
$height = $picture->getHeight();
|
||||
$width = $picture->getWidth();
|
||||
$size = strlen($content);
|
||||
|
|
|
@ -308,7 +308,7 @@ function twitter_upload_image(int $uid, array $image, int $retrial)
|
|||
|
||||
$picturedata = Photo::getImageForPhoto($photo);
|
||||
|
||||
$picture = new Image($picturedata, $photo['type']);
|
||||
$picture = new Image($picturedata, $photo['type'], $photo['filename']);
|
||||
$height = $picture->getHeight();
|
||||
$width = $picture->getWidth();
|
||||
$size = strlen($picturedata);
|
||||
|
|
Loading…
Reference in a new issue