mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:02:54 +00:00
Handle empty values for API output
This commit is contained in:
parent
2b6b72f7fd
commit
69aad853ee
1 changed files with 4 additions and 0 deletions
|
@ -2931,6 +2931,10 @@ function api_format_items($items, $user_info, $filter_user = false, $type = "jso
|
|||
|
||||
$ret = [];
|
||||
|
||||
if (empty($items)) {
|
||||
return $ret;
|
||||
}
|
||||
|
||||
foreach ((array)$items as $item) {
|
||||
list($status_user, $author_user, $owner_user) = api_item_get_user($a, $item);
|
||||
|
||||
|
|
Loading…
Reference in a new issue