]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Diaspora/Fetch.php
spelling: protocol
[friendica.git] / src / Module / Diaspora / Fetch.php
index bcb6ba0caeacea893b0c78d0847b29186b03392a..6e1259152f14b349415c5cb2b923e03121fbfdad 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2022, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -49,7 +49,7 @@ class Fetch extends BaseModule
 
                // Fetch the item
                $condition = ['origin' => true, 'private' => [Item::PUBLIC, Item::UNLISTED], 'guid' => $guid,
-                       'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT], 'network' => [Protocol::DFRN, Protocol::DIASPORA]];
+                       'gravity' => [Item::GRAVITY_PARENT, Item::GRAVITY_COMMENT], 'network' => [Protocol::DFRN, Protocol::DIASPORA]];
                $item = Post::selectFirst([], $condition);
                if (empty($item)) {
                        $condition = ['guid' => $guid, 'network' => [Protocol::DFRN, Protocol::DIASPORA]];
@@ -61,7 +61,7 @@ class Fetch extends BaseModule
                                }
                                $host = $parts["scheme"] . "://" . $parts["host"];
 
-                               if (Strings::normaliseLink($host) != Strings::normaliseLink(DI::baseUrl()->get())) {
+                               if (Strings::normaliseLink($host) != Strings::normaliseLink(DI::baseUrl())) {
                                        $location = $host . "/fetch/" . DI::args()->getArgv()[1] . "/" . urlencode($guid);
                                        System::externalRedirect($location, 301);
                                }
@@ -76,7 +76,7 @@ class Fetch extends BaseModule
                        throw new HTTPException\NotFoundException();
                }
 
-               if ($item['gravity'] == GRAVITY_PARENT) {
+               if ($item['gravity'] == Item::GRAVITY_PARENT) {
                        $status = Diaspora::buildStatus($item, $user);
                } else {
                        $status = ['type' => 'comment', 'message' => Diaspora::createCommentSignature($item)];