Let Diaspora hublocs come back by allowing discover_by_webbie() to carry on if
and look for a hubloc even if an xchan is found. You'll probably need to loop through the missing ones manually.
This commit is contained in:
parent
5fac8e80de
commit
3867081503
@ -1092,9 +1092,7 @@ function discover_by_webbie($webbie) {
|
|||||||
$r = q("select * from xchan where xchan_hash = '%s' limit 1",
|
$r = q("select * from xchan where xchan_hash = '%s' limit 1",
|
||||||
dbesc($webbie)
|
dbesc($webbie)
|
||||||
);
|
);
|
||||||
if($r)
|
if(! $r) {
|
||||||
return true;
|
|
||||||
|
|
||||||
$r = q("insert into xchan ( xchan_hash, xchan_guid, xchan_pubkey, xchan_addr, xchan_url, xchan_name, xchan_network, xchan_instance_url, xchan_name_date ) values ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s') ",
|
$r = q("insert into xchan ( xchan_hash, xchan_guid, xchan_pubkey, xchan_addr, xchan_url, xchan_name, xchan_network, xchan_instance_url, xchan_name_date ) values ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s') ",
|
||||||
dbesc($addr),
|
dbesc($addr),
|
||||||
dbesc($guid),
|
dbesc($guid),
|
||||||
@ -1106,6 +1104,7 @@ function discover_by_webbie($webbie) {
|
|||||||
dbesc(z_root()),
|
dbesc(z_root()),
|
||||||
dbescdate(datetime_convert())
|
dbescdate(datetime_convert())
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
$r = q("select * from hubloc where hubloc_hash = '%s' limit 1",
|
$r = q("select * from hubloc where hubloc_hash = '%s' limit 1",
|
||||||
dbesc($webbie)
|
dbesc($webbie)
|
||||||
|
Reference in New Issue
Block a user