From: Michael Date: Mon, 24 Sep 2018 05:35:47 +0000 (+0000) Subject: Variable fix X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=59c137b9467c9e06ca851af8372ac51762d2c4c9;p=friendica.git Variable fix --- diff --git a/src/Protocol/ActivityPub.php b/src/Protocol/ActivityPub.php index d4c904eb18..4697e3f8fc 100644 --- a/src/Protocol/ActivityPub.php +++ b/src/Protocol/ActivityPub.php @@ -68,6 +68,8 @@ use Friendica\Core\Config; * General: * - Queueing unsucessful deliveries * - Polling the outboxes for missing content? + * - Checking signature fails + * - Possibly using the LD-JSON parser */ class ActivityPub { @@ -1093,7 +1095,7 @@ class ActivityPub return; } - if (!trust_source) { + if (!$trust_source) { logger('No trust for activity type "' . $activity['type'] . '", so we quit now.', LOGGER_DEBUG); }