diff options
author | redmatrix <git@macgirvin.com> | 2016-05-21 18:18:33 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-21 18:18:33 -0700 |
commit | 1cb311cef9848178780e3fd52814bf3a64ed0556 (patch) | |
tree | c6b8d41d8f30f51c6b8637f6af19f6efd75d1475 /include/follow.php | |
parent | ed56b6e67b27900e2ff413a7781c9095aa8251a0 (diff) | |
download | volse-hubzilla-1cb311cef9848178780e3fd52814bf3a64ed0556.tar.gz volse-hubzilla-1cb311cef9848178780e3fd52814bf3a64ed0556.tar.bz2 volse-hubzilla-1cb311cef9848178780e3fd52814bf3a64ed0556.zip |
finish updating zot_finger instances
Diffstat (limited to 'include/follow.php')
-rw-r--r-- | include/follow.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/follow.php b/include/follow.php index e4f7e8557..dd43c7c4c 100644 --- a/include/follow.php +++ b/include/follow.php @@ -56,11 +56,11 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) if($arr['channel']['success']) $ret = $arr['channel']; elseif(! $is_http) - $ret = zot_finger($url,$channel); + $ret = Zotlabs\Zot\Finger::run($url,$channel); - if($ret && $ret['success']) { + if($ret && is_array($ret) && $ret['success']) { $is_red = true; - $j = json_decode($ret['body'],true); + $j = $ret; } $my_perms = get_channel_default_perms($uid); |