diff options
author | Mario <mario@mariovavti.com> | 2019-03-23 21:50:50 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-03-23 21:50:50 +0100 |
commit | d2725c3f49c509f031607a15889850b8defe7bad (patch) | |
tree | 77b7d26f03b5f2c152a2e759138bb54b450a96af /Zotlabs/Lib/DReport.php | |
parent | 4d4425a5bf7a2227c3e70f7ab51375390aa69db2 (diff) | |
download | volse-hubzilla-d2725c3f49c509f031607a15889850b8defe7bad.tar.gz volse-hubzilla-d2725c3f49c509f031607a15889850b8defe7bad.tar.bz2 volse-hubzilla-d2725c3f49c509f031607a15889850b8defe7bad.zip |
aparently we do not use underscores anymore. this fixes spaming of dreports with recipient not found entries for our own xchan
Diffstat (limited to 'Zotlabs/Lib/DReport.php')
-rw-r--r-- | Zotlabs/Lib/DReport.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/DReport.php b/Zotlabs/Lib/DReport.php index 18087e29f..7515d3292 100644 --- a/Zotlabs/Lib/DReport.php +++ b/Zotlabs/Lib/DReport.php @@ -118,7 +118,7 @@ class DReport { // So if a remote site says they can't find us, that's no big surprise // and just creates a lot of extra report noise - if(($dr['location'] !== z_root()) && ($dr['sender'] === $rxchan) && ($dr['status'] === 'recipient_not_found')) + if(($dr['location'] !== z_root()) && ($dr['sender'] === $rxchan) && ($dr['status'] === 'recipient not found')) return false; // If you have a private post with a recipient list, every single site is going to report |