Browse Source

Merge pull request #2 from chjj/feature/BIP21

bip21: fix regex parse error.
patch-2
Yemel Jardi 11 years ago
parent
commit
288f21f7bd
  1. 2
      lib/BIP21.js

2
lib/BIP21.js

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

Loading…
Cancel
Save