Welcome the Technical Support section. Help us in assisting you by providing us with a concise and descriptive elaboration of your issues. Be specific and if possible, provide us with a step-by-step instruction in replicating your problem.
this is the patch.
1. open this file components/com_community/controllers/groups.php, add this code after line 1973 :
$act->like_type = 'groups.create';
and add this code after line 1975:
$act->like_id = CActivities::LIKE_SELF;
2. open this file components/com_community/controllers/system.php, add this code after line 1808 :
/**
* some like_type are missing and causing stream id cannot be like, in this case, group create.
* This condition is used to fix the existing activity with such issue.
*/
if($act->comment_type == 'groups.create' && empty($act->like_type)){
$act->like_type = 'groups.create';
$act->store();
}
actually these issue will be resolved in next package.