diff options
author | Mario <mario@mariovavti.com> | 2021-09-13 11:36:41 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-09-13 11:36:41 +0000 |
commit | 0b716b3cc7953ef1226b9f8fcee9f746ee1aade1 (patch) | |
tree | 5fad64f1c7ad45fe54dd7a95cdc40e458db33591 /Zotlabs/Lib | |
parent | d115e09abca362eef494a72b1dad46ab4df7a88d (diff) | |
download | volse-hubzilla-0b716b3cc7953ef1226b9f8fcee9f746ee1aade1.tar.gz volse-hubzilla-0b716b3cc7953ef1226b9f8fcee9f746ee1aade1.tar.bz2 volse-hubzilla-0b716b3cc7953ef1226b9f8fcee9f746ee1aade1.zip |
fix $desturl set to wrong value (null)
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index 3f1f16b09..343a3f5f9 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -2636,8 +2636,8 @@ class Libzot { ); if ($r) { - logger('found another site that is not dead: ' . $r[0]['hubloc_url'], LOGGER_DEBUG, LOG_INFO); - $desturl = $r[0]['hubloc_url']; + logger('found another site that is not dead: ' . $r[0]['hubloc_id_url'], LOGGER_DEBUG, LOG_INFO); + $desturl = $r[0]['hubloc_id_url']; } else { return $hash; |