mirror of
https://github.com/friendica/friendica
synced 2025-04-26 18:30:11 +00:00
Fix: Forum posts from some contacts weren't distributed
This commit is contained in:
parent
1fc7d5ae85
commit
53e8b21ca3
3 changed files with 4 additions and 6 deletions
|
@ -75,9 +75,7 @@ class Objects extends BaseModule
|
|||
throw new HTTPException\NotFoundException();
|
||||
}
|
||||
|
||||
$owner = User::getById($item['uid'], ['hidewall']);
|
||||
|
||||
$validated = empty($owner['hidewall']) && in_array($item['private'], [Item::PUBLIC, Item::UNLISTED]);
|
||||
$validated = in_array($item['private'], [Item::PUBLIC, Item::UNLISTED]);
|
||||
|
||||
if (!$validated) {
|
||||
$requester = HTTPSignature::getSigner('', $_SERVER);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue