mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Fix wrong return value in Item::gettopLevelParent()
- Address https://github.com/friendica/friendica/issues/14025#issuecomment-2105033182
This commit is contained in:
parent
f566c52624
commit
40949483f3
1 changed files with 1 additions and 1 deletions
|
@ -790,7 +790,7 @@ class Item
|
|||
|
||||
if (self::hasRestrictions($item, $parent['author-id'], $parent['restrictions'])) {
|
||||
Logger::notice('Restrictions apply - ignoring item', ['restrictions' => $parent['restrictions'], 'verb' => $parent['verb'], 'uri-id' => $item['uri-id'], 'thr-parent-id' => $item['thr-parent-id'], 'uid' => $item['uid']]);
|
||||
return 0;
|
||||
return [];
|
||||
}
|
||||
|
||||
if ($parent['uri-id'] == $parent['parent-uri-id']) {
|
||||
|
|
Loading…
Reference in a new issue