Test for failed tests

This commit is contained in:
Michael 2021-01-17 20:56:15 +00:00
parent 4157db5473
commit 5a36c6b6c0
1 changed files with 4 additions and 4 deletions

View File

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