forked from GNUsocial/gnu-social
XMPP cleanup: fix outgoing XMPP when queuing is disabled; fix notice for first access to undefined member variable
This commit is contained in:
parent
5adb494c26
commit
a77efb2447
@ -88,9 +88,14 @@ class Sharing_XMPP extends XMPPHP_XMPP
|
||||
/**
|
||||
* Build an XMPP proxy connection that'll save outgoing messages
|
||||
* to the 'xmppout' queue to be picked up by xmppdaemon later.
|
||||
*
|
||||
* If queueing is disabled, we'll grab a live connection.
|
||||
*
|
||||
* @return XMPPHP
|
||||
*/
|
||||
function jabber_proxy()
|
||||
{
|
||||
if (common_config('queue', 'enabled')) {
|
||||
$proxy = new Queued_XMPP(common_config('xmpp', 'host') ?
|
||||
common_config('xmpp', 'host') :
|
||||
common_config('xmpp', 'server'),
|
||||
@ -104,6 +109,9 @@ function jabber_proxy()
|
||||
common_config('xmpp', 'debug') ?
|
||||
XMPPHP_Log::LEVEL_VERBOSE : null);
|
||||
return $proxy;
|
||||
} else {
|
||||
return jabber_connect();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -36,6 +36,7 @@ class XmppManager extends IoManager
|
||||
protected $site = null;
|
||||
protected $pingid = 0;
|
||||
protected $lastping = null;
|
||||
protected $conn = null;
|
||||
|
||||
static protected $singletons = array();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user