From 34b28cd8d36c7805e65c442ff1588ccf5165387a Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 3 Feb 2021 10:22:34 +0100 Subject: fix wrong operand --- Zotlabs/Lib/Enotify.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Lib/Enotify.php b/Zotlabs/Lib/Enotify.php index 3a24cd349..d2a0f0abc 100644 --- a/Zotlabs/Lib/Enotify.php +++ b/Zotlabs/Lib/Enotify.php @@ -43,7 +43,7 @@ class Enotify { dbesc($params['to_xchan']) ); } - if ($x & $y) { + if ($x && $y) { $sender = $x[0]; $recip = $y[0]; } else { -- cgit v1.2.3