fix parent id for likes in status notifications.
This commit is contained in:
parent
b7fb78245a
commit
b221c68e4b
@ -2327,6 +2327,16 @@ function send_status_notifications($post_id,$item) {
|
||||
|
||||
$parent = 0;
|
||||
|
||||
if(array_key_exists('verb',$item) && (activity_match($item['verb'], ACTIVITY_LIKE) || activity_match($item['verb'], ACTIVITY_DISLIKE))) {
|
||||
|
||||
$r = q("select id from item where mid = '%s' and uid = %d limit 1",
|
||||
dbesc($item['thr_parent']),
|
||||
intval($item['uid'])
|
||||
);
|
||||
|
||||
$thr_parent_id = $r[0]['id'];
|
||||
}
|
||||
|
||||
$r = q("select channel_hash from channel where channel_id = %d limit 1",
|
||||
intval($item['uid'])
|
||||
);
|
||||
@ -2394,8 +2404,8 @@ function send_status_notifications($post_id,$item) {
|
||||
'link' => $link,
|
||||
'verb' => ACTIVITY_POST,
|
||||
'otype' => 'item',
|
||||
'parent' => $parent,
|
||||
'parent_mid' => $item['parent_mid']
|
||||
'parent' => $thr_parent_id ? $thr_parent_id : $parent,
|
||||
'parent_mid' => $thr_parent_id ? $item['thr_parent'] : $item['parent_mid']
|
||||
));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user