aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-03-29 10:47:22 +0000
committerMario <mario@mariovavti.com>2020-03-29 10:47:22 +0000
commitb1590ad645eca3f9d35e6fb7250547f2244c3140 (patch)
tree13505c5ab4539fc7eb511a33b8c5e0556121ea98
parentf49010bb12731c71c278dad8300e8dd117641bf9 (diff)
downloadvolse-hubzilla-b1590ad645eca3f9d35e6fb7250547f2244c3140.tar.gz
volse-hubzilla-b1590ad645eca3f9d35e6fb7250547f2244c3140.tar.bz2
volse-hubzilla-b1590ad645eca3f9d35e6fb7250547f2244c3140.zip
fix check for existing hublocs
-rw-r--r--Zotlabs/Module/Fhublocs.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Module/Fhublocs.php b/Zotlabs/Module/Fhublocs.php
index 989456f66..dcd399a1f 100644
--- a/Zotlabs/Module/Fhublocs.php
+++ b/Zotlabs/Module/Fhublocs.php
@@ -26,7 +26,8 @@ class Fhublocs extends \Zotlabs\Web\Controller {
$found = false;
$primary_address = '';
- $x = zot_get_hublocs($rr['channel_hash']);
+ $x = Libzot::get_hublocs($rr['channel_hash']);
+
if($x) {
foreach($x as $xx) {
if($xx['hubloc_url'] === z_root() && $xx['hubloc_sitekey'] === $sitekey) {