Skip to content

Commit 25f284d

Browse files
committed
Fix crash when session_id is null.
1 parent 533528f commit 25f284d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

pkg/signaler/signaler.go

+10
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,11 @@ func (s *Signaler) HandleNewWebSocket(conn *websocket.WebSocketConn, request *ht
195195
fallthrough
196196
case "candidate":
197197
{
198+
if _, ok := data["to"]; !ok {
199+
logger.Errorf("No to id found!")
200+
return
201+
}
202+
198203
To := data["to"].(string)
199204
if peer, ok := s.peers[To]; !ok {
200205
msg := map[string]interface{}{
@@ -213,6 +218,11 @@ func (s *Signaler) HandleNewWebSocket(conn *websocket.WebSocketConn, request *ht
213218
break
214219
case "bye":
215220
{
221+
if _, ok := data["session_id"]; !ok {
222+
logger.Errorf("No session_id found!")
223+
return
224+
}
225+
216226
sessionID := data["session_id"].(string)
217227
ids := strings.Split(sessionID, "-")
218228
if len(ids) != 2 {

0 commit comments

Comments
 (0)