mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-09 04:24:28 +02: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
|
@ -37,13 +37,13 @@ class Poll extends BaseModule
|
|||
{
|
||||
$owner = User::getByNickname(
|
||||
$this->parameters['nickname'] ?? '',
|
||||
['nickname', 'blocked', 'account_expired', 'account_removed', 'hidewall']
|
||||
['nickname', 'blocked', 'account_expired', 'account_removed']
|
||||
);
|
||||
if (!$owner || $owner['account_expired'] || $owner['account_removed']) {
|
||||
throw new HTTPException\NotFoundException($this->t('User not found.'));
|
||||
}
|
||||
|
||||
if ($owner['blocked'] || $owner['hidewall']) {
|
||||
if ($owner['blocked']) {
|
||||
throw new HTTPException\UnauthorizedException($this->t('Access to this profile has been restricted.'));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue