aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/Libzotdir.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2019-03-23 19:42:22 +0100
committerMario <mario@mariovavti.com>2019-03-23 19:42:22 +0100
commit3a07a194abb3dfab842e08b242c9a566c97b6e35 (patch)
treeb5279310e807dc495aade0c41d93443ba6aa3eac /Zotlabs/Lib/Libzotdir.php
parent682ffa7cf5bc02319750d0f65cd4ce68cf527223 (diff)
downloadvolse-hubzilla-3a07a194abb3dfab842e08b242c9a566c97b6e35.tar.gz
volse-hubzilla-3a07a194abb3dfab842e08b242c9a566c97b6e35.tar.bz2
volse-hubzilla-3a07a194abb3dfab842e08b242c9a566c97b6e35.zip
Webfinger::zot_url() requires a string (webfinger address), empty var given in update_directory_entry()
Diffstat (limited to 'Zotlabs/Lib/Libzotdir.php')
-rw-r--r--Zotlabs/Lib/Libzotdir.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Libzotdir.php b/Zotlabs/Lib/Libzotdir.php
index 91d089c86..4e084554d 100644
--- a/Zotlabs/Lib/Libzotdir.php
+++ b/Zotlabs/Lib/Libzotdir.php
@@ -307,7 +307,7 @@ class Libzotdir {
if ($ud['ud_addr'] && (! ($ud['ud_flags'] & UPDATE_FLAGS_DELETED))) {
$success = false;
- $href = \Zotlabs\Lib\Webfinger::zot_url(punify($url));
+ $href = \Zotlabs\Lib\Webfinger::zot_url($ud['ud_addr']);
if($href) {
$zf = \Zotlabs\Lib\Zotfinger::exec($href);
}