mirror of
https://github.com/friendica/friendica
synced 2024-11-10 01:42:53 +00:00
Store the direction only when there is content to store
This commit is contained in:
parent
af6db65961
commit
e3d3dc50e5
1 changed files with 4 additions and 4 deletions
|
@ -461,6 +461,10 @@ class Processor
|
|||
$item['protocol'] = Conversation::PARCEL_ACTIVITYPUB;
|
||||
$item['conversation-href'] = $activity['context'] ?? '';
|
||||
$item['conversation-uri'] = $activity['conversation'] ?? '';
|
||||
|
||||
if (isset($activity['push'])) {
|
||||
$item['direction'] = $activity['push'] ? Conversation::PUSH : Conversation::PULL;
|
||||
}
|
||||
}
|
||||
|
||||
$isForum = false;
|
||||
|
@ -489,10 +493,6 @@ class Processor
|
|||
return;
|
||||
}
|
||||
|
||||
if (isset($activity['push'])) {
|
||||
$item['direction'] = $activity['push'] ? Conversation::PUSH : Conversation::PULL;
|
||||
}
|
||||
|
||||
$item['plink'] = $activity['alternate-url'] ?? $item['uri'];
|
||||
|
||||
$item = self::constructAttachList($activity, $item);
|
||||
|
|
Loading…
Reference in a new issue