From 27e9b5618b5a07ebc15fa6b6b0d1d2c78ade8f46 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 7 Sep 2017 23:20:40 +0200 Subject: use thread parent hash only for like and dislike activity. in all other cases use item hash. this will catch more situations. --- Zotlabs/Module/Display.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Zotlabs/Module') diff --git a/Zotlabs/Module/Display.php b/Zotlabs/Module/Display.php index bc597364f..190ed3cc5 100644 --- a/Zotlabs/Module/Display.php +++ b/Zotlabs/Module/Display.php @@ -135,7 +135,7 @@ class Display extends \Zotlabs\Web\Controller { $static = ((local_channel()) ? channel_manual_conv_update(local_channel()) : 1); //if the target item is not a post (eg a like) we want to address its thread parent - $mid = (($target_item['verb'] == ACTIVITY_POST) ? $item_hash : $target_item['thr_parent']); + $mid = ((($target_item['verb'] == ACTIVITY_LIKE) || ($target_item['verb'] == ACTIVITY_DISLIKE)) ? $target_item['thr_parent'] : $item_hash); //if we got a decoded hash we must encode it again before handing to javascript if($decoded) -- cgit v1.2.3