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 /Zotlabs/Daemon | |
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 'Zotlabs/Daemon')
-rw-r--r-- | Zotlabs/Daemon/Gprobe.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Zotlabs/Daemon/Gprobe.php b/Zotlabs/Daemon/Gprobe.php index 8141739be..43cce93c3 100644 --- a/Zotlabs/Daemon/Gprobe.php +++ b/Zotlabs/Daemon/Gprobe.php @@ -22,9 +22,8 @@ class Gprobe { ); if(! $r) { - $x = zot_finger($url,null); - if($x['success']) { - $j = json_decode($x['body'],true); + $j = \Zotlabs\Zot\Finger::run($url,null); + if($j['success']) { $y = import_xchan($j); } } |