]> git.mxchange.org Git - friendica.git/commitdiff
Wrong function order in Item::update
authorMichael <heluecht@pirati.ca>
Wed, 7 Feb 2018 20:09:37 +0000 (20:09 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 7 Feb 2018 20:09:37 +0000 (20:09 +0000)
src/Model/Item.php

index cc42aafc61e83c2fd90ae0e66467e664280abce5..410a45afe0712f89b3b391c6b49c2c360f824343 100644 (file)
@@ -64,16 +64,14 @@ class Item extends BaseObject
                // The condition needn't to be a simple array but could be a complex condition.
                $items = dba::select('item', ['id', 'origin'], $condition);
                while ($item = dba::fetch($items)) {
-                       // We only need to notfiy others when it is an original entry from us
-                       if (!$item['origin']) {
-                               continue;
-                       }
-
                        Term::insertFromTagFieldByItemId($item['id']);
                        Term::insertFromFileFieldByItemId($item['id']);
                        self::updateThread($item['id']);
 
-                       Worker::add(PRIORITY_HIGH, "Notifier", 'edit_post', $item['id']);
+                       // We only need to notfiy others when it is an original entry from us
+                       if ($item['origin']) {
+                               Worker::add(PRIORITY_HIGH, "Notifier", 'edit_post', $item['id']);
+                       }
                }
 
                return $rows;