diff options
author | Mario Vavti <mario@mariovavti.com> | 2019-01-15 22:36:01 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2019-01-15 22:36:01 +0100 |
commit | ad6eb15eac2297d3ad058a587ad39ce2957ee637 (patch) | |
tree | 2f9a67dbb4f42e41aefb5e5ce75fde1411f08240 /Zotlabs/Lib/DReport.php | |
parent | 2e94e4cd67e9eb7dd5e42cbd38cc0c4b96d5af3c (diff) | |
download | volse-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/DReport.php')
-rw-r--r-- | Zotlabs/Lib/DReport.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Zotlabs/Lib/DReport.php b/Zotlabs/Lib/DReport.php index 21b320cac..2cda7ce5d 100644 --- a/Zotlabs/Lib/DReport.php +++ b/Zotlabs/Lib/DReport.php @@ -93,11 +93,16 @@ class DReport { if(! $c) return false; + // legacy zot recipients add a space and their name to the xchan. remove it if true. - // is the recipient one of our connections, or do we want to store every report? + $legacy_recipient = strpos($dr['recipient'], ' '); + if($legacy_recipient !== false) + $rxchan = substr($dr['recipient'], 0 , $legacy_recipient); + else + $rxchan = $dr['recipient']; + // is the recipient one of our connections, or do we want to store every report? - $rxchan = $dr['recipient']; $pcf = get_pconfig($c[0]['channel_id'],'system','dreport_store_all'); if($pcf) return true; |