bip21: fix regex parse error.

This commit is contained in:
Christopher Jeffrey 2014-08-12 11:26:12 -04:00
parent 363e27d493
commit 730e8236cf
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ BIP21.prototype.parse = function(uri) {
}
// workaround to host insensitiveness
var group = /[^:]*:/?/?([^?]*)/.exec(uri);
var group = /[^:]*:\/?\/?([^?]*)/.exec(uri);
this.setAddress(group && group[1]);
for (var arg in info.query) {