mirror of
https://github.com/friendica/friendica
synced 2024-11-18 03:43:40 +00:00
Execute the language detection all the time
This commit is contained in:
parent
43fa22470c
commit
5dedf5e500
1 changed files with 3 additions and 3 deletions
|
@ -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 a new issue