Merge pull request #5071 from annando/fix-duplicated-posts

Bugfix: Only send a notifier when the item was really edited
This commit is contained in:
Tobias Diekershoff 2018-05-17 07:59:56 +02:00 committed by GitHub
commit ac67f3c154
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 7 deletions

View file

@ -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']);
}
}