follow_from_feed issue when called from push
This commit is contained in:
parent
09967598e1
commit
40f6280c48
@ -946,7 +946,7 @@ function consume_feed($xml, $importer, &$contact, $pass = 0) {
|
||||
$datarray['author_xchan'] = '';
|
||||
|
||||
if(activity_match($datarray['verb'],ACTIVITY_FOLLOW) && $datarray['obj_type'] === ACTIVITY_OBJ_PERSON) {
|
||||
$cb = array('item' => $datarray,'channel' => $importer, 'xchan' => null, 'author' => $author, 'caught' => false);
|
||||
$cb = array('item' => $datarray,'channel' => $importer, 'xchan' => [ 'placeholder' => '' ], 'author' => $author, 'caught' => false);
|
||||
call_hooks('follow_from_feed',$cb);
|
||||
if($cb['caught']) {
|
||||
if($cb['return_code'])
|
||||
|
@ -49,7 +49,7 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false)
|
||||
|
||||
$arr = array('url' => $url, 'channel' => array());
|
||||
|
||||
call_hooks('follow', $arr);
|
||||
call_hooks('follow_init', $arr);
|
||||
|
||||
if($arr['channel']['success'])
|
||||
$ret = $arr['channel'];
|
||||
|
Reference in New Issue
Block a user