mirror of
https://github.com/friendica/friendica
synced 2024-11-19 22:23:40 +00:00
Variable fix
This commit is contained in:
parent
b386add315
commit
59c137b946
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue