]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Inbox.php
Translated string will never match what's saved in DB if not english
[friendica.git] / src / Module / Inbox.php
index c97c3b7afb05a2dfe12a4a05c56d694c419e03ad..692e4043adce99f6fec85c4326a6b9ead51404cb 100644 (file)
@@ -9,6 +9,7 @@ use Friendica\Protocol\ActivityPub;
 use Friendica\Core\System;
 use Friendica\Database\DBA;
 use Friendica\Util\HTTPSignature;
+use Friendica\Core\Logger;
 
 /**
  * ActivityPub Inbox
@@ -36,7 +37,7 @@ class Inbox extends BaseModule
                $tempfile = tempnam(get_temppath(), $filename);
                file_put_contents($tempfile, json_encode(['argv' => $a->argv, 'header' => $_SERVER, 'body' => $postdata], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
 
-               logger('Incoming message stored under ' . $tempfile);
+               Logger::log('Incoming message stored under ' . $tempfile);
 */
                if (!empty($a->argv[1])) {
                        $user = DBA::selectFirst('user', ['uid'], ['nickname' => $a->argv[1]]);
@@ -48,7 +49,7 @@ class Inbox extends BaseModule
                        $uid = 0;
                }
 
-               ActivityPub::processInbox($postdata, $_SERVER, $uid);
+               ActivityPub\Receiver::processInbox($postdata, $_SERVER, $uid);
 
                System::httpExit(202);
        }