mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-17 19:37:09 +02:00
Add weird debug output from jabber sip
This commit is contained in:
@@ -524,6 +524,12 @@ JabberPlugin::checkSettings()
|
|||||||
reconnect = true;
|
reconnect = true;
|
||||||
|
|
||||||
QNetworkProxy proxyToUse = TomahawkUtils::proxyFactory()->queryProxy( QNetworkProxyQuery( m_currentServer, m_currentPort ) ).first();
|
QNetworkProxy proxyToUse = TomahawkUtils::proxyFactory()->queryProxy( QNetworkProxyQuery( m_currentServer, m_currentPort ) ).first();
|
||||||
|
qDebug() << "proxyToUse host: " << proxyToUse.hostName() << ", usedProxy host: " << m_usedProxy.hostName();
|
||||||
|
qDebug() << "proxyToUse port: " << proxyToUse.port() << ", usedProxy port: " << m_usedProxy.port();
|
||||||
|
qDebug() << "proxyToUse user: " << proxyToUse.user() << ", usedProxy user: " << m_usedProxy.user();
|
||||||
|
qDebug() << "proxyToUse pass: " << proxyToUse.password() << ", usedProxy pass: " << m_usedProxy.password();
|
||||||
|
qDebug() << "proxyToUse type: " << proxyToUse.type() << ", usedProxy type: " << m_usedProxy.type();
|
||||||
|
qDebug() << "proxyToUse caps: " << proxyToUse.capabilities() << ", usedProxy caps: " << m_usedProxy.capabilities();
|
||||||
if ( proxyToUse.hostName() != m_usedProxy.hostName() ||
|
if ( proxyToUse.hostName() != m_usedProxy.hostName() ||
|
||||||
proxyToUse.port() != m_usedProxy.port() ||
|
proxyToUse.port() != m_usedProxy.port() ||
|
||||||
proxyToUse.user() != m_usedProxy.user() ||
|
proxyToUse.user() != m_usedProxy.user() ||
|
||||||
@@ -531,7 +537,7 @@ JabberPlugin::checkSettings()
|
|||||||
proxyToUse.type() != m_usedProxy.type() ||
|
proxyToUse.type() != m_usedProxy.type() ||
|
||||||
proxyToUse.capabilities() != m_usedProxy.capabilities()
|
proxyToUse.capabilities() != m_usedProxy.capabilities()
|
||||||
)
|
)
|
||||||
reconnect = true;
|
reconnect = true;
|
||||||
|
|
||||||
m_currentUsername = accountName();
|
m_currentUsername = accountName();
|
||||||
m_currentPassword = readPassword();
|
m_currentPassword = readPassword();
|
||||||
|
Reference in New Issue
Block a user