Skip to content

Commit

Permalink
Fix setting iceServers in peer connection config.
Browse files Browse the repository at this point in the history
  • Loading branch information
legastero committed Mar 8, 2019
1 parent d846904 commit 07aed0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jingle/ICESession.js
Expand Up @@ -15,7 +15,7 @@ export default class ICESession extends BaseSession {
this.pc = new RTCPeerConnection(
{
...opts.config,
...opts.iceServers
iceServers: opts.iceServers
},
opts.constraints
);
Expand Down

0 comments on commit 07aed0c

Please sign in to comment.