From: Hank Grabowski Date: Fri, 24 Nov 2023 22:19:04 +0000 (-0500) Subject: Fix if not allowed blocked servers then `server-blocked` condition is false not true X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f3f0859e0b5b2b89cc0016e02bb63228f0a82572;p=friendica.git Fix if not allowed blocked servers then `server-blocked` condition is false not true --- diff --git a/src/Model/Contact.php b/src/Model/Contact.php index d2e04c998e..1f9dd9782d 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -3629,7 +3629,7 @@ class Contact ]; if (!$show_blocked) { - $condition['server-blocked'] = true; + $condition['server-blocked'] = false; } if ($uid == 0) {