Fix wrong return value in Item::gettopLevelParent()

- Address https://github.com/friendica/friendica/issues/14025#issuecomment-2105033182
This commit is contained in:
Hypolite Petovan 2024-05-10 21:54:19 -04:00
parent f566c52624
commit 40949483f3

View file

@ -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']) {