]> git.mxchange.org Git - friendica.git/commitdiff
Add necessary call to BaseUrl->get() in Module\Objects
authorHypolite Petovan <hypolite@mrpetovan.com>
Tue, 31 Dec 2019 17:20:57 +0000 (12:20 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Tue, 31 Dec 2019 17:25:41 +0000 (12:25 -0500)
- Addresses https://github.com/friendica/friendica/issues/8000#issuecomment-569959500

src/Module/Objects.php

index e03baaad7eb23cf2198e054b26215d8f0b47a3a9..783e849bfe35cd756d8feaae99dde9867115278b 100644 (file)
@@ -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();
                        }
                }