From 0ef83b23839045662da7677f82162a5b129a29f5 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 10 Jan 2018 21:08:23 +0000 Subject: [PATCH] Commenting on postings from tags on the network page does work now --- src/Object/Post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Object/Post.php b/src/Object/Post.php index 97768bf56c..61200b58e9 100644 --- a/src/Object/Post.php +++ b/src/Object/Post.php @@ -769,7 +769,7 @@ class Post extends BaseObject $uid = $conv->getProfileOwner(); $parent_uid = $this->getDataValue('uid'); - if (!empty($parent_uid) && empty($uid) && ($uid != $parent_uid)) { + if (!is_null($parent_uid) && ($uid != $parent_uid)) { $uid = $parent_uid; }