]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Item.php
Merge pull request #8934 from annando/fix-fatal
[friendica.git] / src / Model / Item.php
index 1a561c7f13982958970b5b0e5b70c76bb35fc9cc..d8fbac8307d18065e19f9c7bd5a7963e77828108 100644 (file)
@@ -1554,9 +1554,7 @@ class Item
                        }
 
                        // Update the contact relations
-                       if ($item['author-id'] != $parent['author-id']) {
-                               DBA::update('contact-relation', ['last-interaction' => $item['created']], ['cid' => $parent['author-id'], 'relation-cid' => $item['author-id']], true);
-                       }
+                       ContactRelation::store($parent['author-id'], $item['author-id'], $item['created']);
                }
 
                return $item;