diff options
author | friendica <info@friendica.com> | 2013-11-27 02:51:16 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-11-27 02:51:16 -0800 |
commit | 64b467ea98fd4cf3cb6215be9ff8e5a9d13ba1a8 (patch) | |
tree | 5e97bc2b588b6f411c2529aa70af3b451a0003a2 /mod | |
parent | e3f5c4458bc637ca304b807d2125f332965e4126 (diff) | |
download | volse-hubzilla-64b467ea98fd4cf3cb6215be9ff8e5a9d13ba1a8.tar.gz volse-hubzilla-64b467ea98fd4cf3cb6215be9ff8e5a9d13ba1a8.tar.bz2 volse-hubzilla-64b467ea98fd4cf3cb6215be9ff8e5a9d13ba1a8.zip |
reduce the likelihood that a given channel will have 30-40 valid hublocs with the same hubloc_url.
Diffstat (limited to 'mod')
-rw-r--r-- | mod/zfinger.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/zfinger.php b/mod/zfinger.php index 59cef5549..2eb6adc75 100644 --- a/mod/zfinger.php +++ b/mod/zfinger.php @@ -164,7 +164,7 @@ function zfinger_init(&$a) { $ret['locations'] = array(); - $x = zot_get_hubloc(array($e['channel_hash'])); + $x = zot_get_hublocs($e['channel_hash']); if($x && count($x)) { foreach($x as $hub) { if(! ($hub['hubloc_flags'] & HUBLOC_FLAGS_UNVERIFIED)) { |