Dant try to add mentions on starting posts

This commit is contained in:
Michael 2020-05-09 08:39:21 +00:00
parent eb4c14695c
commit a1fda8f74a
1 changed files with 4 additions and 0 deletions

View File

@ -333,6 +333,10 @@ class Tag
*/
public static function createImplicitMentions(int $uri_id, int $parent_uri_id)
{
if ($uri_id == $parent_uri_id) {
return;
}
// Always mention the direct parent author
$parent = Item::selectFirst(['author-link', 'author-name'], ['uri-id' => $parent_uri_id]);
self::store($uri_id, self::IMPLICIT_MENTION, $parent['author-name'], $parent['author-link']);