summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-06-16 17:36:19 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-06-16 17:36:19 +0000
commit82d5da2058886b527b8e5bd26bcfae80d7fc898f (patch)
tree6f89e0fe0082f9f86c513696eedb5aa569b33061 /protocols
parente5ef7594938eda92916993abc125486757eb9b9d (diff)
larger timeout for slow servers
git-svn-id: http://svn.miranda-ng.org/main/trunk@14211 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r--protocols/JabberG/src/jabber_disco.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_disco.cpp b/protocols/JabberG/src/jabber_disco.cpp
index 75c5f08c8c..425b6a18ef 100644
--- a/protocols/JabberG/src/jabber_disco.cpp
+++ b/protocols/JabberG/src/jabber_disco.cpp
@@ -354,7 +354,7 @@ BOOL CJabberProto::SendBothRequests(CJabberSDNode *pNode, HXML parent)
// disco#items
if (!pNode->GetItemsRequestId()) {
CJabberIqInfo *pInfo = AddIQ(&CJabberProto::OnIqResultServiceDiscoveryItems, JABBER_IQ_TYPE_GET, pNode->GetJid());
- pInfo->SetTimeout(30000);
+ pInfo->SetTimeout(60000);
pNode->SetItemsRequestId(pInfo->GetIqId());
XmlNodeIq iq(pInfo);