This commit is contained in:
antelle 2017-04-18 19:32:01 +02:00
parent 9f21842a68
commit 9067eee63b
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ AutoTypeFilter.prototype.getEntryRank = function(entry) {
const entryUrlParts = urlPartsRegex.exec(entry.url.toLowerCase());
if (entryUrlParts) {
const [, scheme, domain, path] = entryUrlParts;
const [, thisScheme, thisDomain, thisPath] = entryUrlParts;
const [, thisScheme, thisDomain, thisPath] = this.urlParts;
if (domain === thisDomain) {
rank += 10;
if (path === thisPath) {