diff options
author | New Tobin Paradigm <email@mattatobin.com> | 2018-04-16 08:25:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-16 08:25:45 -0400 |
commit | ba80720469e27d3d7ae6f1095b3c187207adc051 (patch) | |
tree | f864e580c5cd7d99127aac64e9c3ae0ee6e9aa4b /toolkit/components/places/UnifiedComplete.js | |
parent | a66e6546c361d238b0179af18e26bf18aa4a7eb9 (diff) | |
parent | ae14556114dcae29f679db7c15f0bc9b707bb89a (diff) | |
download | UXP-ba80720469e27d3d7ae6f1095b3c187207adc051.tar UXP-ba80720469e27d3d7ae6f1095b3c187207adc051.tar.gz UXP-ba80720469e27d3d7ae6f1095b3c187207adc051.tar.lz UXP-ba80720469e27d3d7ae6f1095b3c187207adc051.tar.xz UXP-ba80720469e27d3d7ae6f1095b3c187207adc051.zip |
Merge pull request #174 from janekptacijarabaci/url_parser_1
moebius#130: URL parser - fix: don't allow empty host name
Diffstat (limited to 'toolkit/components/places/UnifiedComplete.js')
-rw-r--r-- | toolkit/components/places/UnifiedComplete.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/components/places/UnifiedComplete.js b/toolkit/components/places/UnifiedComplete.js index ad3d35aab..acd358b11 100644 --- a/toolkit/components/places/UnifiedComplete.js +++ b/toolkit/components/places/UnifiedComplete.js @@ -1245,7 +1245,7 @@ Search.prototype = { // * If the protocol differs we should not match. For example if the user // searched https we should not return http. try { - let prefixURI = NetUtil.newURI(this._strippedPrefix); + let prefixURI = NetUtil.newURI(this._strippedPrefix + match.token); let finalURI = NetUtil.newURI(match.url); if (prefixURI.scheme != finalURI.scheme) return false; |