Merge pull request #12913 from HankG/fix-mastodon-api-image-posts-with-empty-status

Fix posting/editing empty text image posts through Mastodon API
This commit is contained in:
Hypolite Petovan
2023-03-18 23:26:38 -04:00
committed by GitHub

View File

@@ -589,7 +589,7 @@ class Item
public static function isValid(array $item): bool
{
// When there is no content then we don't post it
if (($item['body'] . $item['title'] == '') && empty($item['quote-uri-id']) && (empty($item['uri-id']) || !Post\Media::existsByURIId($item['uri-id']))) {
if (($item['body'] . $item['title'] == '') && empty($item['quote-uri-id']) && empty($item['attachments']) && (empty($item['uri-id']) || !Post\Media::existsByURIId($item['uri-id']))) {
Logger::notice('No body, no title.');
return false;
}