summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/gui/fs2-gui.py5
1 files changed, 4 insertions, 1 deletions
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"