Skip to content

Commit

Permalink
make setConfiguration public
Browse files Browse the repository at this point in the history
  • Loading branch information
shinyoshiaki committed Dec 22, 2024
1 parent 164d9e8 commit b8346a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@
"**"
],
"typescript.tsdk": "node_modules/typescript/lib",
"biome.lspBin": "node_modules/@biomejs/biome/bin/biome",
"biome.lsp.bin": "node_modules/@biomejs/biome/bin/biome",
"prettier.enable": false
}
2 changes: 1 addition & 1 deletion packages/webrtc/src/peerConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export class RTCPeerConnection extends EventTarget {
});
}

private setConfiguration(config: Partial<PeerConfig>) {
setConfiguration(config: Partial<PeerConfig>) {
deepMerge(this.config, config);

if (this.config.icePortRange) {
Expand Down

0 comments on commit b8346a2

Please sign in to comment.