aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-11-20 20:32:46 +0000
committerMario <mario@mariovavti.com>2023-11-20 20:32:46 +0000
commitf8c631a3f0181743b1bcb2e8292379953a4c293b (patch)
tree73b6c635ebf70e44622f5c7a43af8b72d2b738c0
parent0f453ae4cf29e6fdfb0e8a665ac0334b4bf1f69c (diff)
parent74911e9f6d44643facd6fa1b45c2035b780570e4 (diff)
downloadvolse-hubzilla-f8c631a3f0181743b1bcb2e8292379953a4c293b.tar.gz
volse-hubzilla-f8c631a3f0181743b1bcb2e8292379953a4c293b.tar.bz2
volse-hubzilla-f8c631a3f0181743b1bcb2e8292379953a4c293b.zip
Merge branch 'dev' into 8.8RC
-rw-r--r--Zotlabs/Lib/DReport.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/Zotlabs/Lib/DReport.php b/Zotlabs/Lib/DReport.php
index c5c2eb088..e22ed65be 100644
--- a/Zotlabs/Lib/DReport.php
+++ b/Zotlabs/Lib/DReport.php
@@ -119,9 +119,8 @@ class DReport {
if((! $r) && ($dr['status'] === 'recipient_not_found'))
return false;
- $r = q("select abook_id from abook where (abook_xchan = '%s' OR abook_xchan = '%s') and abook_channel = %d limit 1",
+ $r = q("select abook_id from abook where abook_xchan = '%s' and abook_channel = %d limit 1",
dbesc($dr['recipient']),
- dbesc($dr['sender']),
intval($c[0]['channel_id'])
);
if($r)