diff options
author | friendica <info@friendica.com> | 2014-09-09 21:54:25 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-09 21:54:25 -0700 |
commit | c1713d49e0f9f578ae7c28edc27697864058cc83 (patch) | |
tree | 787ebc9992dd7cc1d2abcd5c169ff51ce7abfa86 | |
parent | f606dec47b18b24728b719eb4529a7c73213c5ef (diff) | |
download | volse-hubzilla-c1713d49e0f9f578ae7c28edc27697864058cc83.tar.gz volse-hubzilla-c1713d49e0f9f578ae7c28edc27697864058cc83.tar.bz2 volse-hubzilla-c1713d49e0f9f578ae7c28edc27697864058cc83.zip |
diaspora connections being marked orphan on directory servers
-rw-r--r-- | include/Contact.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Contact.php b/include/Contact.php index 0590f9d1e..8d50b1e5b 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -323,7 +323,7 @@ function mark_orphan_hubsxchans() { return; $r = q("update hubloc set hubloc_status = (hubloc_status | %d) where not (hubloc_status & %d) - and hubloc_network != 'zot' and hubloc_connected < utc_timestamp() - interval 36 day", + and hubloc_network = 'zot' and hubloc_connected < utc_timestamp() - interval 36 day", intval(HUBLOC_OFFLINE), intval(HUBLOC_OFFLINE) ); |