diff options
author | friendica <info@friendica.com> | 2013-08-19 19:05:11 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-19 19:05:11 -0700 |
commit | b9314935e6f85bb0098c651d021ce9bdc2753ecb (patch) | |
tree | a9f179b3066799a9b37608cfc00555fcf37876ca /mod | |
parent | 2e14dc242e552629cac5914e85096d423e6fd43c (diff) | |
download | volse-hubzilla-b9314935e6f85bb0098c651d021ce9bdc2753ecb.tar.gz volse-hubzilla-b9314935e6f85bb0098c651d021ce9bdc2753ecb.tar.bz2 volse-hubzilla-b9314935e6f85bb0098c651d021ce9bdc2753ecb.zip |
localize_item() thinks all likes on posts are likes on comments because we didn't pass any info in the activity object to distinguish them from each other.
Diffstat (limited to 'mod')
-rwxr-xr-x | mod/like.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mod/like.php b/mod/like.php index f617391a1..90005eca3 100755 --- a/mod/like.php +++ b/mod/like.php @@ -110,6 +110,7 @@ function like_content(&$a) { $obj = json_encode(array( 'type' => $objtype, 'id' => $item['mid'], + 'parent' => (($item['thr_parent']) ? $item['thr_parent'] : $item['parent_mid']), 'link' => $links, 'title' => $item['title'], 'content' => $item['body'], |