File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ Check out the **[contributing wiki](https://github.com/pion/webrtc/wiki/Contribu
53
53
* [Simonacca Fotokite](https://github.com/simonacca-fotokite)
54
54
* [Steve Denman](https://github.com/stevedenman)
55
55
* [RunningMan](https://github.com/xsbchen)
56
+ * [mchlrhw](https://github.com/mchlrhw)
56
57
57
58
# ## License
58
59
MIT License - see [LICENSE](LICENSE) for full text
Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ pc.onicecandidate = event => {
28
28
}
29
29
30
30
// Offer to receive 1 audio, and 2 video tracks
31
- pc . addTransceiver ( 'audio' , { 'direction' : 'recvonly ' } )
32
- pc . addTransceiver ( 'video' , { 'direction' : 'recvonly ' } )
33
- pc . addTransceiver ( 'video' , { 'direction' : 'recvonly ' } )
31
+ pc . addTransceiver ( 'audio' , { 'direction' : 'sendrecv ' } )
32
+ pc . addTransceiver ( 'video' , { 'direction' : 'sendrecv ' } )
33
+ pc . addTransceiver ( 'video' , { 'direction' : 'sendrecv ' } )
34
34
pc . createOffer ( ) . then ( d => pc . setLocalDescription ( d ) ) . catch ( log )
35
35
36
36
window . startSession = ( ) => {
You can’t perform that action at this time.
0 commit comments