From e9b786d5e8fbf288db5e14dc8f2804e9d7b4f94a Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 9 Nov 2022 13:05:48 +0000 Subject: =?UTF-8?q?=C3=83wrong=20array=20key?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Zotlabs/Lib/Libsync.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'Zotlabs') diff --git a/Zotlabs/Lib/Libsync.php b/Zotlabs/Lib/Libsync.php index 9851ce52a..09b81dc83 100644 --- a/Zotlabs/Lib/Libsync.php +++ b/Zotlabs/Lib/Libsync.php @@ -184,6 +184,8 @@ class Libsync { require_once('include/import.php'); +hz_syslog(print_r($arr, true)); + $result = []; $keychange = ((array_key_exists('keychange', $arr)) ? true : false); @@ -192,7 +194,10 @@ class Libsync { dbesc($sender) ); - $DR = new DReport(z_root(), $sender, $d, 'sync'); + $mid = 'sync'; + + + $DR = new DReport(z_root(), $sender, $d, $mid); if (!$r) { $DR->update('recipient not found'); @@ -202,7 +207,6 @@ class Libsync { $channel = $r[0]; - $mid = 'sync'; $DR->set_name($channel['channel_name'] . ' <' . channel_reddress($channel) . '>'); @@ -297,7 +301,7 @@ class Libsync { if (array_key_exists('item', $arr) && $arr['item']) { sync_items($channel, $arr['item'], ((array_key_exists('relocate', $arr)) ? $arr['relocate'] : null)); - $mid = $arr['item']['mid'] . '#sync'; + $mid = $arr['item'][0]['message_id'] . '#sync'; } // deprecated, maintaining for a few months for upward compatibility @@ -750,7 +754,6 @@ class Libsync { $result[] = $DR->get(); } - return $result; } -- cgit v1.2.3