mirror of
https://github.com/friendica/friendica
synced 2024-12-23 18:40:16 +00:00
Issue 9094: Avoid DFRN announces
This commit is contained in:
parent
a5be6f9276
commit
cdcdc135e8
1 changed files with 4 additions and 0 deletions
|
@ -83,6 +83,10 @@ class Delivery
|
|||
$itemdata = Model\Item::select([], $condition, $params);
|
||||
|
||||
while ($item = Model\Item::fetch($itemdata)) {
|
||||
if ($item['verb'] == Activity::ANNOUNCE) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($item['id'] == $parent_id) {
|
||||
$parent = $item;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue