From: Michael Date: Mon, 8 Jan 2024 06:23:28 +0000 (+0000) Subject: Execute the language detection all the time X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=119e1a8c9533efa87922c123a2247db765adb8d9;p=friendica.git Execute the language detection all the time --- diff --git a/src/Model/Item.php b/src/Model/Item.php index aa2d9aa7e5..f9ccc473fe 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -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)) {