]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Feed.php
Changes:
[friendica.git] / src / Module / Feed.php
index 654b8a4e9d4fcb62e99ab04aa68faa05e85a89f4..266b38c9f91afa6403d687cb04a73561d9a812cd 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2023, the Friendica project
+ * @copyright Copyright (C) 2010-2024, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -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);
        }
 }