aboutsummaryrefslogtreecommitdiffstats
path: root/include/Contact.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-09-09 21:54:25 -0700
committerfriendica <info@friendica.com>2014-09-09 21:54:25 -0700
commitc1713d49e0f9f578ae7c28edc27697864058cc83 (patch)
tree787ebc9992dd7cc1d2abcd5c169ff51ce7abfa86 /include/Contact.php
parentf606dec47b18b24728b719eb4529a7c73213c5ef (diff)
downloadvolse-hubzilla-c1713d49e0f9f578ae7c28edc27697864058cc83.tar.gz
volse-hubzilla-c1713d49e0f9f578ae7c28edc27697864058cc83.tar.bz2
volse-hubzilla-c1713d49e0f9f578ae7c28edc27697864058cc83.zip
diaspora connections being marked orphan on directory servers
Diffstat (limited to 'include/Contact.php')
-rw-r--r--include/Contact.php2
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)
);