diff options
author | Brion Vibber <brion@pobox.com> | 2010-01-25 13:48:24 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-01-25 13:48:24 -0800 |
commit | 1ab24832960eef698731cf0d3e72fccfa336392d (patch) | |
tree | ff7a8edce819ce17fc7280773b68755ae20a1a01 | |
parent | ee4ca8f2601bc5a2dd258fea176037e03e23feb8 (diff) |
Fix presence notification on XMPP thread (now foreground, not background)
-rw-r--r-- | lib/xmppmanager.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/xmppmanager.php b/lib/xmppmanager.php index 299175dd7..985e7c32e 100644 --- a/lib/xmppmanager.php +++ b/lib/xmppmanager.php @@ -101,7 +101,7 @@ class XmppManager extends IoManager $this->conn->addEventHandler('reconnect', 'handle_reconnect', $this); $this->conn->setReconnectTimeout(600); - jabber_send_presence("Send me a message to post a notice", 'available', null, 'available', -1); + jabber_send_presence("Send me a message to post a notice", 'available', null, 'available', 100); return !is_null($this->conn); } @@ -233,7 +233,7 @@ class XmppManager extends IoManager common_log(LOG_NOTICE, 'XMPP reconnected'); $this->conn->processUntil('session_start'); - $this->conn->presence(null, 'available', null, 'available', -1); + $this->conn->presence(null, 'available', null, 'available', 100); } |