aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/Libzot.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-01-15 22:36:01 +0100
committerMario Vavti <mario@mariovavti.com>2019-01-15 22:36:01 +0100
commitad6eb15eac2297d3ad058a587ad39ce2957ee637 (patch)
tree2f9a67dbb4f42e41aefb5e5ce75fde1411f08240 /Zotlabs/Lib/Libzot.php
parent2e94e4cd67e9eb7dd5e42cbd38cc0c4b96d5af3c (diff)
downloadvolse-hubzilla-ad6eb15eac2297d3ad058a587ad39ce2957ee637.tar.gz
volse-hubzilla-ad6eb15eac2297d3ad058a587ad39ce2957ee637.tar.bz2
volse-hubzilla-ad6eb15eac2297d3ad058a587ad39ce2957ee637.zip
fix legacy zot dreport not passing the is_storable check
Diffstat (limited to 'Zotlabs/Lib/Libzot.php')
-rw-r--r--Zotlabs/Lib/Libzot.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php
index 87a5126f4..268622430 100644
--- a/Zotlabs/Lib/Libzot.php
+++ b/Zotlabs/Lib/Libzot.php
@@ -998,6 +998,15 @@ logger('4');
foreach($x['delivery_report'] as $xx) {
call_hooks('dreport_process',$xx);
if(is_array($xx) && array_key_exists('message_id',$xx) && DReport::is_storable($xx)) {
+
+ // legacy recipients add a space and their name to the xchan. split those if true.
+ $legacy_recipient = strpos($xx['recipient'], ' ');
+ if($legacy_recipient !== false) {
+ $legacy_recipient_parts = explode(' ', $xx['recipient'], 2);
+ $xx['recipient'] = $legacy_recipient_parts[0];
+ $xx['name'] = $legacy_recipient_parts[1];
+ }
+
q("insert into dreport ( dreport_mid, dreport_site, dreport_recip, dreport_name, dreport_result, dreport_time, dreport_xchan ) values ( '%s', '%s', '%s','%s','%s','%s','%s' ) ",
dbesc($xx['message_id']),
dbesc($xx['location']),