mirror of
https://github.com/friendica/friendica
synced 2024-11-13 01:02:53 +00:00
Fix indentation in Module\Inbox
This commit is contained in:
parent
0d9209a74b
commit
004818ca1b
1 changed files with 10 additions and 9 deletions
|
@ -2,6 +2,7 @@
|
||||||
/**
|
/**
|
||||||
* @file src/Module/Inbox.php
|
* @file src/Module/Inbox.php
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Friendica\Module;
|
namespace Friendica\Module;
|
||||||
|
|
||||||
use Friendica\BaseModule;
|
use Friendica\BaseModule;
|
||||||
|
@ -26,15 +27,15 @@ class Inbox extends BaseModule
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Config::get('debug', 'ap_inbox_log')) {
|
if (Config::get('debug', 'ap_inbox_log')) {
|
||||||
if (HTTPSignature::getSigner($postdata, $_SERVER)) {
|
if (HTTPSignature::getSigner($postdata, $_SERVER)) {
|
||||||
$filename = 'signed-activitypub';
|
$filename = 'signed-activitypub';
|
||||||
} else {
|
} else {
|
||||||
$filename = 'failed-activitypub';
|
$filename = 'failed-activitypub';
|
||||||
}
|
}
|
||||||
$tempfile = tempnam(get_temppath(), $filename);
|
$tempfile = tempnam(get_temppath(), $filename);
|
||||||
file_put_contents($tempfile, json_encode(['argv' => $a->argv, 'header' => $_SERVER, 'body' => $postdata], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
|
file_put_contents($tempfile, json_encode(['argv' => $a->argv, 'header' => $_SERVER, 'body' => $postdata], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
|
||||||
Logger::log('Incoming message stored under ' . $tempfile);
|
Logger::log('Incoming message stored under ' . $tempfile);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($a->argv[1])) {
|
if (!empty($a->argv[1])) {
|
||||||
$user = DBA::selectFirst('user', ['uid'], ['nickname' => $a->argv[1]]);
|
$user = DBA::selectFirst('user', ['uid'], ['nickname' => $a->argv[1]]);
|
||||||
|
|
Loading…
Reference in a new issue