From: Hypolite Petovan Date: Tue, 31 Dec 2019 17:20:57 +0000 (-0500) Subject: Add necessary call to BaseUrl->get() in Module\Objects X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ab0a3f194a4e3d8d046fcad3db589e005cc1ee73;p=friendica.git Add necessary call to BaseUrl->get() in Module\Objects - Addresses https://github.com/friendica/friendica/issues/8000#issuecomment-569959500 --- diff --git a/src/Module/Objects.php b/src/Module/Objects.php index e03baaad7e..783e849bfe 100644 --- a/src/Module/Objects.php +++ b/src/Module/Objects.php @@ -37,7 +37,7 @@ class Objects extends BaseModule // If no original post could be found, it could possibly be a forum post, there we remove the "origin" field. // @TODO: Replace with parameter from router $item = Item::selectFirst(['id', 'author-link'], ['guid' => $a->argv[1], 'private' => false]); - if (!DBA::isResult($item) || !strstr($item['author-link'], DI::baseUrl())) { + if (!DBA::isResult($item) || !strstr($item['author-link'], DI::baseUrl()->get())) { throw new \Friendica\Network\HTTPException\NotFoundException(); } }