Skip to content
Snippets Groups Projects
Commit 400390ac authored by Thibg's avatar Thibg
Browse files

Correct JingleContent.send_candidate and JingleTransport.make_transport. Fixes #5525

parent dffb2c30
No related branches found
No related tags found
No related merge requests found
......@@ -118,7 +118,7 @@ class JingleContent(object):
Send a transport candidate for a previously defined transport.
"""
content = self.__content()
content.addChild(self.transport.make_transport([candidate]))
content.addChild(node=self.transport.make_transport([candidate]))
self.session.send_transport_info(content)
def __fill_jingle_stanza(self, stanza, content, error, action):
......
......@@ -60,6 +60,8 @@ class JingleTransport(object):
"""
if not candidates:
candidates = self._iter_candidates()
else:
candidates = (self.make_candidate(candidate) for candidate in candidates)
transport = xmpp.Node('transport', payload=candidates)
return transport
......@@ -145,4 +147,4 @@ class JingleTransportICEUDP(JingleTransport):
transports[xmpp.NS_JINGLE_ICE_UDP] = JingleTransportICEUDP
# vim: se ts=3:
\ No newline at end of file
# vim: se ts=3:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment