mirror of
https://github.com/friendica/friendica
synced 2024-11-18 02:23:40 +00:00
Merge remote-tracking branch 'upstream/2023.05-rc' into quote-loop
This commit is contained in:
commit
5a18d06a93
2 changed files with 12 additions and 5 deletions
|
@ -396,15 +396,22 @@ class Receiver
|
|||
|
||||
// Fetch the activity on Lemmy "Announce" messages (announces of activities)
|
||||
if (($type == 'as:Announce') && in_array($object_type, array_merge(self::ACTIVITY_TYPES, ['as:Delete', 'as:Undo', 'as:Update']))) {
|
||||
Logger::debug('Fetch announced activity', ['object' => $object_id]);
|
||||
Logger::debug('Fetch announced activity', ['object' => $object_id, 'uid' => $fetch_uid]);
|
||||
$data = Processor::fetchCachedActivity($object_id, $fetch_uid);
|
||||
if (!empty($data)) {
|
||||
$type = $object_type;
|
||||
$activity = JsonLD::compact($data);
|
||||
$announced_activity = JsonLD::compact($data);
|
||||
|
||||
// Some variables need to be refetched since the activity changed
|
||||
$actor = JsonLD::fetchElement($activity, 'as:actor', '@id');
|
||||
$object_id = JsonLD::fetchElement($activity, 'as:object', '@id');
|
||||
$actor = JsonLD::fetchElement($announced_activity, 'as:actor', '@id');
|
||||
$announced_id = JsonLD::fetchElement($announced_activity, 'as:object', '@id');
|
||||
if (empty($announced_id)) {
|
||||
Logger::warning('No object id in announced activity', ['id' => $object_id, 'activity' => $activity, 'announced' => $announced_activity]);
|
||||
return [];
|
||||
} else {
|
||||
$activity = $announced_activity;
|
||||
$object_id = $announced_id;
|
||||
}
|
||||
$object_type = self::fetchObjectType($activity, $object_id, $fetch_uid);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: 2023.05-rc\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-05-19 17:34+0000\n"
|
||||
"POT-Creation-Date: 2023-05-19 19:50+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
Loading…
Reference in a new issue