From 38670815039741b31bbd75647f81096810ddaadb Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Sat, 13 Dec 2014 20:20:55 +0000 Subject: 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. --- include/network.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/network.php b/include/network.php index ee2a6a59b..db48caf37 100644 --- a/include/network.php +++ b/include/network.php @@ -1092,9 +1092,7 @@ function discover_by_webbie($webbie) { $r = q("select * from xchan where xchan_hash = '%s' limit 1", dbesc($webbie) ); - if($r) - return true; - + if(! $r) { $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($guid), @@ -1106,6 +1104,7 @@ function discover_by_webbie($webbie) { dbesc(z_root()), dbescdate(datetime_convert()) ); + } $r = q("select * from hubloc where hubloc_hash = '%s' limit 1", dbesc($webbie) -- cgit v1.2.3