zot_refresh: always try the hubloc pointed to by xchan_addr first
This commit is contained in:
parent
e6690c818d
commit
50e32c3d8a
@ -296,9 +296,18 @@ function zot_refresh($them, $channel = null, $force = false) {
|
|||||||
if ($them['hubloc_url']) {
|
if ($them['hubloc_url']) {
|
||||||
$url = $them['hubloc_url'];
|
$url = $them['hubloc_url'];
|
||||||
} else {
|
} else {
|
||||||
$r = q("select hubloc_url, hubloc_flags from hubloc where hubloc_hash = '%s'",
|
$r = null;
|
||||||
dbesc($them['xchan_hash'])
|
|
||||||
);
|
if(array_key_exists('xchan_addr',$them) && $them['xchan_addr']) {
|
||||||
|
$r = q("select hubloc_url, hubloc_flags from hubloc where hubloc_addr = '%s'",
|
||||||
|
dbesc($them['xchan_addr'])
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if(! $r) {
|
||||||
|
$r = q("select hubloc_url, hubloc_flags from hubloc where hubloc_hash = '%s'",
|
||||||
|
dbesc($them['xchan_hash'])
|
||||||
|
);
|
||||||
|
}
|
||||||
if ($r) {
|
if ($r) {
|
||||||
foreach ($r as $rr) {
|
foreach ($r as $rr) {
|
||||||
if ($rr['hubloc_flags'] & HUBLOC_FLAGS_PRIMARY) {
|
if ($rr['hubloc_flags'] & HUBLOC_FLAGS_PRIMARY) {
|
||||||
|
@ -1 +1 @@
|
|||||||
2015-09-08.1149
|
2015-09-10.1151
|
||||||
|
Reference in New Issue
Block a user