mirror of
https://github.com/friendica/friendica
synced 2025-04-27 20:30:13 +00:00
Default values for settings / use lowercase
This commit is contained in:
parent
648e8a00a4
commit
427881c437
2 changed files with 10 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue