Send room update while client reconnecting (#1499)

This commit is contained in:
cnderrauber
2023-03-07 15:59:40 +08:00
committed by GitHub
parent d2e7818eca
commit 38deab8991
+4
View File
@@ -393,6 +393,10 @@ func (r *Room) ResumeParticipant(p types.LocalParticipant, responseSink routing.
return err
}
r.lock.RLock()
p.SendRoomUpdate(r.protoRoom)
r.lock.RUnlock()
p.ICERestart(nil, reason)
return nil
}