From ba71c53bc6565849ec5ad7af759173e92a498858 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 30 Mar 2023 12:08:43 +0000 Subject: ignore deliveries by our own channel which do not origin from the local hub. instead rely on the sync delivery. --- Zotlabs/Lib/Libzot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Zotlabs/Lib') diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index 406a26910..709c9dc94 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -1585,7 +1585,7 @@ class Libzot { * access checks. */ - if ($sender === $channel['channel_hash'] && $arr['author_xchan'] === $channel['channel_hash'] && $arr['mid'] === $arr['parent_mid']) { + if ($sender === $channel['channel_hash'] && $arr['author_xchan'] === $channel['channel_hash'] && !str_starts_with($arr['mid'], z_root())) { $DR->update('self delivery ignored'); $result[] = $DR->get(); continue; -- cgit v1.2.3