aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/DReport.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-01-16 21:52:16 +0100
committerMario Vavti <mario@mariovavti.com>2019-01-16 21:52:16 +0100
commitde8582ec07d125bf1c7f08cc3d695c33aaaf9d85 (patch)
treeb90f4aa1ba4869e3cf5e2cbdbd3e95aa68dcd2a7 /Zotlabs/Lib/DReport.php
parente6ccdc23781c7a70f17b97ab701d832d4719b624 (diff)
parenta1ac507a94b52c58c497f22be2b55d8d7b515cca (diff)
downloadvolse-hubzilla-de8582ec07d125bf1c7f08cc3d695c33aaaf9d85.tar.gz
volse-hubzilla-de8582ec07d125bf1c7f08cc3d695c33aaaf9d85.tar.bz2
volse-hubzilla-de8582ec07d125bf1c7f08cc3d695c33aaaf9d85.zip
Merge branch 'fix_dreport_issue' into dev
Diffstat (limited to 'Zotlabs/Lib/DReport.php')
-rw-r--r--Zotlabs/Lib/DReport.php12
1 files changed, 10 insertions, 2 deletions
diff --git a/Zotlabs/Lib/DReport.php b/Zotlabs/Lib/DReport.php
index 21b320cac..ef1ce2678 100644
--- a/Zotlabs/Lib/DReport.php
+++ b/Zotlabs/Lib/DReport.php
@@ -93,11 +93,19 @@ 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) {
+ $legacy_recipient_parts = explode(' ', $dr['recipient'], 2);
+ $rxchan = $legacy_recipient_parts[0];
+ }
+ 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;