Execute the language detection all the time

This commit is contained in:
Michael 2024-01-08 06:23:28 +00:00
parent 43fa22470c
commit 5dedf5e500
1 changed files with 3 additions and 3 deletions

View File

@ -2069,12 +2069,12 @@ class Item
$transmitted[$language] = 0;
}
$content = trim(($item['title'] ?? '') . ' ' . ($item['content-warning'] ?? '') . ' ' . ($item['body'] ?? ''));
if (!in_array($item['gravity'], [self::GRAVITY_PARENT, self::GRAVITY_COMMENT]) || empty($content)) {
if (!in_array($item['gravity'], [self::GRAVITY_PARENT, self::GRAVITY_COMMENT])) {
return !empty($transmitted) ? json_encode($transmitted) : null;
}
$content = trim(($item['title'] ?? '') . ' ' . ($item['content-warning'] ?? '') . ' ' . ($item['body'] ?? ''));
$languages = self::getLanguageArray($content, 3, $item['uri-id'], $item['author-id'], $transmitted);
if (!empty($transmitted)) {