From 6fe8daabcf8ba6fff6e7926330c6c4d64327a88c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= Date: Sat, 25 Jul 2009 20:36:47 -0400 Subject: rawudp: Use force_remote_candidates, not set --- examples/gui/fs2-gui.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/gui/fs2-gui.py b/examples/gui/fs2-gui.py index d85fcbc5..ba8a050c 100755 --- a/examples/gui/fs2-gui.py +++ b/examples/gui/fs2-gui.py @@ -507,7 +507,10 @@ class FsUIStream: self.candidates.append(candidate) def candidates_done(self): "Callback for the network object." - self.fsstream.set_remote_candidates(self.candidates) + if TRANSMITTER == "rawudp": + self.fsstream.force_remote_candidates(self.candidates) + else: + self.fsstream.set_remote_candidates(self.candidates) self.candidates = [] def codecs(self, codecs): "Callback for the network object. Set the codecs" -- cgit v1.2.1