mirror of
https://github.com/friendica/friendica
synced 2024-12-23 18:40:16 +00:00
Better server_url handling
This commit is contained in:
parent
c25af197c9
commit
5b6215d7bd
1 changed files with 8 additions and 3 deletions
|
@ -165,12 +165,17 @@ function discover_users() {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($user["server_url"] != "") {
|
|
||||||
$server_url = $user["server_url"];
|
|
||||||
} else {
|
|
||||||
$server_url = poco_detect_server($user["url"]);
|
$server_url = poco_detect_server($user["url"]);
|
||||||
|
$force_update = false;
|
||||||
|
|
||||||
|
if ($user["server_url"] != "") {
|
||||||
|
|
||||||
|
$force_update = (normalise_link($user["server_url"]) != normalise_link($server_url));
|
||||||
|
|
||||||
|
$server_url = $user["server_url"];
|
||||||
}
|
}
|
||||||
if ((($server_url == "") AND ($user["network"] == NETWORK_FEED)) OR poco_check_server($server_url, $user["network"])) {
|
|
||||||
|
if ((($server_url == "") AND ($user["network"] == NETWORK_FEED)) OR $force_update OR poco_check_server($server_url, $user["network"])) {
|
||||||
logger('Check profile '.$user["url"]);
|
logger('Check profile '.$user["url"]);
|
||||||
proc_run(PRIORITY_LOW, "include/discover_poco.php", "check_profile", base64_encode($user["url"]));
|
proc_run(PRIORITY_LOW, "include/discover_poco.php", "check_profile", base64_encode($user["url"]));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue