Execute the language detection all the time
This commit is contained in:
parent
43fa22470c
commit
5dedf5e500
|
@ -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)) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user