Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2010-05-03 17:27:56 +0400
committerThibaut Girka <thib@sitedethib.com>2010-05-03 17:27:56 +0400
commit06c7f2bdd52f2bf39688bf8b2f449029604cb5c9 (patch)
tree27d29beb8bd62e29488f7e8f2f1ea55caaad16d6
parentaf7238f4e769edfc3f6ed60f89fc2d7cafd64cfc (diff)
[Jingle] Don't send transport-info before the content itself
-rw-r--r--src/common/jingle_rtp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/jingle_rtp.py b/src/common/jingle_rtp.py
index 84b4d9195..6fa784975 100644
--- a/src/common/jingle_rtp.py
+++ b/src/common/jingle_rtp.py
@@ -183,7 +183,7 @@ class JingleRTPContent(JingleContent):
elif name == 'farsight-new-local-candidate':
candidate = message.structure['candidate']
self.transport.candidates.append(candidate)
- if self.candidates_ready:
+ if self.sent:
# FIXME: Is this case even possible?
self.send_candidate(candidate)
elif name == 'farsight-component-state-changed':