mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:42:54 +00:00
Fetch the "addr" value whenever it is empty
This commit is contained in:
parent
be067bcf96
commit
2e81d0a2b3
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca
|
|||
$addr = "";
|
||||
}
|
||||
|
||||
if ((($network == "") OR ($name == "") OR ($profile_photo == "") OR ($server_url == "") OR $alternate)
|
||||
if ((($network == "") OR ($name == "") OR ($addr == "") OR ($profile_photo == "") OR ($server_url == "") OR $alternate)
|
||||
AND poco_reachable($profile_url, $server_url, $network, false)) {
|
||||
$data = probe_url($profile_url);
|
||||
|
||||
|
|
Loading…
Reference in a new issue