mirror of
https://github.com/friendica/friendica
synced 2025-05-20 01:04:15 +02:00
Relay posts with the original protocol
This commit is contained in:
parent
675f54e44f
commit
a43059df27
4 changed files with 41 additions and 18 deletions
|
@ -141,13 +141,7 @@ class Delivery
|
|||
}
|
||||
}
|
||||
|
||||
// When commenting too fast after delivery, a post wasn't recognized as top level post.
|
||||
// The count then showed more than one entry. The additional check should help.
|
||||
// The check for the "count" should be superfluous, but I'm not totally sure by now, so we keep it.
|
||||
if ((($parent['id'] == $target_id) || (count($items) == 1)) && ($parent['uri'] === $parent['parent-uri'])) {
|
||||
Logger::log('Top level post');
|
||||
$top_level = true;
|
||||
}
|
||||
$top_level = $target_item['gravity'] == GRAVITY_PARENT;
|
||||
|
||||
// This is IMPORTANT!!!!
|
||||
|
||||
|
@ -211,7 +205,8 @@ class Delivery
|
|||
// Transmit via Diaspora if the thread had started as Diaspora post.
|
||||
// Also transmit via Diaspora if this is a direct answer to a Diaspora comment.
|
||||
// This is done since the uri wouldn't match (Diaspora doesn't transmit it)
|
||||
if (!empty($parent) && !empty($thr_parent) && in_array(Protocol::DIASPORA, [$parent['network'], $thr_parent['network']])) {
|
||||
// Also transmit relayed posts from Diaspora contacts via Diaspora.
|
||||
if (!empty($parent) && !empty($thr_parent) && in_array(Protocol::DIASPORA, [$parent['network'], $thr_parent['network'], $target_item['network']])) {
|
||||
$contact['network'] = Protocol::DIASPORA;
|
||||
}
|
||||
|
||||
|
|
|
@ -133,10 +133,7 @@ class Notifier
|
|||
}
|
||||
}
|
||||
|
||||
if ((count($items) == 1) && ($items[0]['id'] === $target_item['id']) && ($items[0]['uri'] === $items[0]['parent-uri'])) {
|
||||
Logger::info('Top level post', ['target' => $target_id]);
|
||||
$top_level = true;
|
||||
}
|
||||
$top_level = $target_item['gravity'] == GRAVITY_PARENT;
|
||||
}
|
||||
|
||||
$owner = User::getOwnerDataById($uid);
|
||||
|
@ -774,11 +771,16 @@ class Notifier
|
|||
return 0;
|
||||
}
|
||||
|
||||
// Also don't deliver when the direct thread parent was delivered via Diaspora
|
||||
// Also don't deliver when the direct thread parent was delivered via Diaspora
|
||||
if ($thr_parent['network'] == Protocol::DIASPORA) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Posts from Diaspora contacts are transmitted via Diaspora
|
||||
if ($target_item['network'] == Protocol::DIASPORA) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
$inboxes = [];
|
||||
$relay_inboxes = [];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue