mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
Support newline as block contact separator
This commit is contained in:
parent
2ad5bd9b9c
commit
d6a35c6995
1 changed files with 1 additions and 1 deletions
|
@ -316,7 +316,7 @@ function conv_get_blocklist()
|
|||
return [];
|
||||
}
|
||||
|
||||
$str_blocked = DI::pConfig()->get(local_user(), 'system', 'blocked');
|
||||
$str_blocked = str_replace(["\n", "\r"], ",", DI::pConfig()->get(local_user(), 'system', 'blocked'));
|
||||
if (empty($str_blocked)) {
|
||||
return [];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue