Fix errors in nsfw addon

This commit is contained in:
Art4 2024-11-30 19:50:06 +00:00 committed by Hypolite Petovan
parent 6b1b043dd8
commit c0971779c6

View file

@ -8,7 +8,6 @@
*
*/
use Friendica\App;
use Friendica\Core\Hook;
use Friendica\Core\Renderer;
use Friendica\DI;
@ -120,6 +119,8 @@ function nsfw_prepare_body_content_filter(&$hook_data)
}
$found = false;
$tag_search = false;
if (count($word_list)) {
$body = $hook_data['item']['title'] . "\n" . nsfw_extract_photos($hook_data['item']['body']);
@ -129,7 +130,6 @@ function nsfw_prepare_body_content_filter(&$hook_data)
continue;
}
$tag_search = false;
switch ($word[0]) {
case '/'; // Regular expression
$found = @preg_match($word, $body);