Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
shinyoshiaki committed Jan 3, 2025
1 parent 5ad8c4d commit 381fe1a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:
npm i
npx playwright install chromium
cd ../
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
- name: test
env:
CI: true
Expand Down
3 changes: 2 additions & 1 deletion packages/ice/src/ice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,8 @@ export class Connection implements IceConnection {
const txUsername = msg.getAttributeValue("USERNAME");
// 相手にとってのremoteは自分にとってのlocal
const { remoteUsername: localUsername } = decodeTxUsername(txUsername);
const localPassword = this.userHistory[localUsername];
const localPassword =
this.userHistory[localUsername] ?? this.localPassword;

// // # authenticate request
// try {
Expand Down

0 comments on commit 381fe1a

Please sign in to comment.