Fix posting/editing empty text image posts through Mastodon API

This commit is contained in:
Hank Grabowski 2023-03-18 23:05:49 -04:00
parent d886a53af0
commit 4366737eb8
1 changed files with 1 additions and 1 deletions

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;
}