X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModel%2FItem.php;h=0a480d755bdf224997f23aca92a9d84025e4f920;hb=41b7d75cca9769203e66df5042846d260a1a0ed8;hp=fb3e59eb259e0f267cfa1470abdfa164378e59ff;hpb=c3a532a9f682d0ceea70e65379018c59cf59efc4;p=friendica.git diff --git a/src/Model/Item.php b/src/Model/Item.php index fb3e59eb25..0a480d755b 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -75,8 +75,9 @@ class Item extends BaseObject Term::insertFromFileFieldByItemId($item['id']); self::updateThread($item['id']); - // We only need to notfiy others when it is an original entry from us - if ($item['origin']) { + // We only need to notfiy others when it is an original entry from us. + // Only call the notifier when the item has some content relevant change. + if ($item['origin'] && in_array('edited', array_keys($fields))) { Worker::add(PRIORITY_HIGH, "Notifier", 'edit_post', $item['id']); } }