fix: ⚡ webrtc offer now waits for initial readiness of websocket
This commit is contained in:
parent
dd0c0cf42a
commit
693c6353a9
3 changed files with 28 additions and 10 deletions
|
@ -25,7 +25,7 @@ pub enum Error {
|
|||
UnexpectedSignalType(SignalType),
|
||||
WebSocketInitialization,
|
||||
WebSocketAuth,
|
||||
WebSocketSend,
|
||||
WebSocketSend(String),
|
||||
WebSocketReceivedNothing,
|
||||
WebSocketReceiveQueueReset,
|
||||
WebSocketReceiveQueueLocked,
|
||||
|
@ -60,7 +60,7 @@ impl Display for Error {
|
|||
|
||||
Error::WebSocketInitialization => write!(f, "WebSocket Initialization"),
|
||||
Error::WebSocketAuth => write!(f, "WebSocket Auth"),
|
||||
Error::WebSocketSend => write!(f, "WebSocket Send"),
|
||||
Error::WebSocketSend(send_error) => write!(f, "WebSocket Send: {}", send_error),
|
||||
Error::WebSocketReceivedNothing => write!(f, "WebSocket Received Nothing"),
|
||||
Error::WebSocketReceiveQueueReset => write!(f, "WebSocket Receive Queue Reset"),
|
||||
Error::WebSocketReceiveQueueLocked => write!(f, "WebSocket Receive Queue Locked"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue