From 99f26dc3cce4200fd91576caf06411060a145579 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 29 Jan 2025 04:58:04 +0000 Subject: [PATCH] Issue 14692: Avoid loop situation #1595 --- blockbot/blockbot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blockbot/blockbot.php b/blockbot/blockbot.php index 022f188d..8f56a553 100644 --- a/blockbot/blockbot.php +++ b/blockbot/blockbot.php @@ -209,7 +209,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); } }