Merge pull request #1229 from MrPetovan/task/langfilter-improve

[langfilter] Improve language detection by removing contiguous whitespace from the message
This commit is contained in:
Tobias Diekershoff 2022-01-20 07:10:38 +01:00 committed by GitHub
commit 2e16db590a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -119,11 +119,13 @@ function langfilter_prepare_body_content_filter(App $a, &$hook_data)
return;
}
if (!empty($hook_data['item']['rendered-html'])) {
$naked_body = strip_tags($hook_data['item']['rendered-html']);
} else {
$naked_body = BBCode::toPlaintext($hook_data['item']['body'], false);
}
$naked_body = strip_tags(
$hook_data['item']['rendered-html']
??''?: // Equivalent of !empty()
BBCode::convert($hook_data['item']['body'], false, BBCode::INTERNAL, true)
);
$naked_body = preg_replace('#\s+#', ' ', trim($naked_body));
// Don't filter if body lenght is below minimum
$minlen = DI::pConfig()->get(local_user(), 'langfilter', 'minlength', 32);