1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-25 21:14:51 +02:00

Add more wait time to Relayed Candidates Establishing

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@7865 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Thiago Camargo 2007-04-03 02:31:25 +00:00 committed by thiago
parent a81288c8ae
commit 922cddb4a8

View file

@ -333,9 +333,9 @@ public abstract class TransportNegotiator extends JingleNegotiator {
}
for (int i = 0; i < 2; i++) {
for (int i = 0; i < 6; i++) {
try {
Thread.sleep(1000);
Thread.sleep(500);
}
catch (InterruptedException e) {
e.printStackTrace();