Bug 1504686 - Don't count search for same document changes. r=Standard8

Differential Revision: https://phabricator.services.mozilla.com/D11394

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Michael Kaply 2018-11-09 11:24:59 +00:00
Родитель 6cebff1713
Коммит fb81651d50
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -204,8 +204,8 @@ let URICountListener = {
if (!this.isHttpURI(uri)) { if (!this.isHttpURI(uri)) {
return; return;
} }
if (shouldRecordSearchCount(browser.getTabBrowser()) &&
if (shouldRecordSearchCount(browser.getTabBrowser())) { !(flags & Ci.nsIWebProgressListener.LOCATION_CHANGE_SAME_DOCUMENT)) {
Services.search.recordSearchURLTelemetry(uriSpec); Services.search.recordSearchURLTelemetry(uriSpec);
} }