Skip to content

Commit

Permalink
Don't allow SIP URI without username in configuration.uri.
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Feb 28, 2013
1 parent ce49a9a commit 2584140
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/UA.js
Original file line number Diff line number Diff line change
Expand Up @@ -880,6 +880,8 @@ UA.configuration_check = {

if(!parsed) {
return;
} else if(!parsed.user) {
return;
} else {
return parsed;
}
Expand Down

0 comments on commit 2584140

Please sign in to comment.