Default values for settings / use lowercase

This commit is contained in:
Michael 2020-10-01 21:14:26 +00:00
parent 648e8a00a4
commit 427881c437
2 changed files with 10 additions and 1 deletions

View file

@ -29,7 +29,7 @@ use Friendica\Model\Search;
/**
* Base class for relay handling
*/
final class Relay
class Relay
{
/**
* Check if a post is wanted
@ -84,6 +84,7 @@ final class Relay
$content = mb_strtolower(BBCode::toPlaintext($body, false));
foreach ($tags as $tag) {
$tag = mb_strtolower($tag);
if (in_array($tag, $denyTags)) {
Logger::info('Unwanted hashtag found - rejected', ['hashtag' => $tag, 'network' => $network, 'url' => $url]);
return false;