Update searchindex on reshare

This commit is contained in:
Michael 2024-01-29 12:32:21 +00:00
parent 7c43b41f0b
commit cda1b91b77
2 changed files with 3 additions and 1 deletions

View file

@ -63,7 +63,7 @@ class SearchIndex
*/
public static function update(int $uri_id)
{
$searchtext = Post\Engagement::getSearchTextForUriId($uri_id, true);
$searchtext = Post\Engagement::getSearchTextForUriId($uri_id);
return DBA::update('post-searchindex', ['searchtext' => $searchtext], ['uri-id' => $uri_id]);
}