aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-07-14 09:24:11 +0200
committerMario <mario@mariovavti.com>2020-07-14 09:24:11 +0200
commit1c88a8d4a065fb4df81f2d4566a078ac75c670b8 (patch)
treee89b9f7cccba05028c97c0c44ea3dcf3f1c1dc94 /Zotlabs/Lib
parentce77f82966d921e144e84506374875dec8965127 (diff)
parentc0735a5ca20ea5612d475f50eb802cb1cd92cab5 (diff)
downloadvolse-hubzilla-1c88a8d4a065fb4df81f2d4566a078ac75c670b8.tar.gz
volse-hubzilla-1c88a8d4a065fb4df81f2d4566a078ac75c670b8.tar.bz2
volse-hubzilla-1c88a8d4a065fb4df81f2d4566a078ac75c670b8.zip
Merge branch 'dev' into 'dev'
z6 work See merge request hubzilla/core!1862
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r--Zotlabs/Lib/ThreadItem.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php
index 426f88688..fadc38b38 100644
--- a/Zotlabs/Lib/ThreadItem.php
+++ b/Zotlabs/Lib/ThreadItem.php
@@ -150,9 +150,11 @@ class ThreadItem {
$edpost = false;
- if($observer['xchan_hash'] == $this->get_data_value('author_xchan')
+ if($observer && $observer['xchan_hash']
+ && ($observer['xchan_hash'] == $this->get_data_value('author_xchan')
|| $observer['xchan_hash'] == $this->get_data_value('owner_xchan')
- || $this->get_data_value('uid') == local_channel())
+ || $observer['xchan_hash'] == $this->get_data_value('source_xchan')
+ || $this->get_data_value('uid') == local_channel()))
$dropping = true;