]> git.mxchange.org Git - friendica.git/commitdiff
Don't ask for empty bodies
authorMichael <heluecht@pirati.ca>
Sun, 17 Jan 2021 21:03:35 +0000 (21:03 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 17 Jan 2021 21:03:35 +0000 (21:03 +0000)
include/api.php

index 13beab027ba8307628b32112091714bee05f8286..3d1afe01e7eae2f3ab1fd9fc5efca69df5245a46 100644 (file)
@@ -2043,7 +2043,7 @@ function api_statuses_repeat($type)
        $fields = ['uri-id', 'network', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink'];
        $item = Post::selectFirst($fields, ['id' => $id, 'private' => [Item::PUBLIC, Item::UNLISTED]]);
  
-       if (!empty($item['body'])) {
+       if (DBA::isResult($item)) {
                if (in_array($item['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::TWITTER])) {
                        if (!Item::performActivity($id, 'announce', local_user())) {
                                throw new InternalServerErrorException();
@@ -2075,7 +2075,7 @@ function api_statuses_repeat($type)
                        $item_id = item_post($a);
                }
        } else {
-               throw new ForbiddenException(!DBA::isResult($item) ? 'not found' : 'empty body');
+               throw new ForbiddenException();
        }
 
        // output the post that we just posted.