mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:42:53 +00:00
Fix if not allowed blocked servers then server-blocked
condition is false not true
This commit is contained in:
parent
379c84b7ab
commit
f3f0859e0b
1 changed files with 1 additions and 1 deletions
|
@ -3629,7 +3629,7 @@ class Contact
|
||||||
];
|
];
|
||||||
|
|
||||||
if (!$show_blocked) {
|
if (!$show_blocked) {
|
||||||
$condition['server-blocked'] = true;
|
$condition['server-blocked'] = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($uid == 0) {
|
if ($uid == 0) {
|
||||||
|
|
Loading…
Reference in a new issue