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

[Jingle] Don't wait for all contents to be ready to accept a session

parent f613c602
No related branches found
No related tags found
No related merge requests found
......@@ -229,7 +229,7 @@ class JingleSession(object):
"""
Return True when all codecs and candidates are ready (for all contents)
"""
return (all((content.is_ready() for content in self.contents.itervalues()))
return (any((content.is_ready() for content in self.contents.itervalues()))
and self.accepted)
def accept_session(self):
......@@ -592,7 +592,8 @@ class JingleSession(object):
# TODO: integrate with __appendContent?
# TODO: parameters 'name', 'content'?
for content in self.contents.values():
self.__append_content(jingle, content)
if content.is_ready():
self.__append_content(jingle, content)
def __session_initiate(self):
assert self.state == JingleStates.ended
......
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