From: Michael Date: Sat, 25 Jan 2025 02:44:54 +0000 (+0000) Subject: Issue 14692: Avoid loop situation X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=cbfcfb33494d1662de1a5f5689caa23d723d6bca;p=friendica-addons.git Issue 14692: Avoid loop situation --- diff --git a/blockbot/blockbot.php b/blockbot/blockbot.php index 163d0cbc..71e35c93 100644 --- a/blockbot/blockbot.php +++ b/blockbot/blockbot.php @@ -208,7 +208,7 @@ function blockbot_log_activitypub(string $url, string $agent) blockbot_save('activitypub-inbox-agents', $agent); } - if (!empty($_SERVER['HTTP_SIGNATURE']) && !empty(HTTPSignature::getSigner('', $_SERVER))) { + if (!empty($_SERVER['HTTP_SIGNATURE']) && !empty(HTTPSignature::getSigner('', $_SERVER, false))) { blockbot_save('activitypub-signature-agents', $agent); } }