]> git.mxchange.org Git - friendica.git/commitdiff
Execute the language detection all the time
authorMichael <heluecht@pirati.ca>
Mon, 8 Jan 2024 06:23:28 +0000 (06:23 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 28 Jan 2024 15:37:43 +0000 (16:37 +0100)
src/Model/Item.php

index aa2d9aa7e57530f150b88b95fc936292219a469e..f9ccc473fe7887dc282dc6cde10fd4feb74fe209 100644 (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)) {