]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Feed.php
Merge pull request #13599 from Raroun/Fix_for_Pull_Request_#13596_missing_a_hidden...
[friendica.git] / src / Module / Feed.php
index 654b8a4e9d4fcb62e99ab04aa68faa05e85a89f4..b9d573979a721430eec0467b725635c5b0efb8b7 100644 (file)
@@ -65,12 +65,12 @@ class Feed extends BaseModule
                        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.'));
                }
 
                $feed = ProtocolFeed::atom($owner, $last_update, 10, $type);
 
-               System::httpExit($feed, Response::TYPE_ATOM);
+               $this->httpExit($feed, Response::TYPE_ATOM);
        }
 }