Skip to content

Commit

Permalink
Fix Typo in Utils.parseURI method. Thanks @ibc
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillan committed Feb 11, 2013
1 parent 2483b40 commit 5bd54df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ JsSIP.Utils= {
},

parseURI: function(uri) {
if (!/^sip:/.test(uri)) {
if (!/^sip:/i.test(uri)) {
uri = JsSIP.C.SIP +':'+ uri;
}

Expand Down

0 comments on commit 5bd54df

Please sign in to comment.