Fix stun server address
The stun server address has a space as suffix which is not allowed in the rust bindings.
This commit is contained in:
parent
122c4106a4
commit
dc1163ab95
@ -21,7 +21,7 @@ use std::sync::{mpsc, Arc, Mutex};
|
||||
use std::thread;
|
||||
use websocket::message::OwnedMessage;
|
||||
|
||||
const STUN_SERVER: &str = "stun://stun.l.google.com:19302 ";
|
||||
const STUN_SERVER: &str = "stun://stun.l.google.com:19302";
|
||||
lazy_static! {
|
||||
static ref RTP_CAPS_OPUS: gst::Caps = {
|
||||
gst::Caps::new_simple(
|
||||
|
Loading…
x
Reference in New Issue
Block a user