[langfilter] Prevent image proxifying while converting text for language detection

This commit is contained in:
Hypolite Petovan 2022-01-20 09:23:31 -05:00
parent 34437e368f
commit b6d03e10b6
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ function langfilter_prepare_body_content_filter(App $a, &$hook_data)
$naked_body = strip_tags(
$hook_data['item']['rendered-html']
??''?: // Equivalent of !empty()
BBCode::convert($hook_data['item']['body'], false, BBCode::INTERNAL, true)
BBCode::convert($hook_data['item']['body'], false, BBCode::ACTIVITYPUB, true)
);
$naked_body = preg_replace('#\s+#', ' ', trim($naked_body));