Bug 1343850 - fix PlacesProvider.jsm undefined variable (aLastKnownTitle vs. aTitle), r=mak

MozReview-Commit-ID: D86SQTcMLvM

--HG--
extra : rebase_source : f70e2c352a6e22e49ebe48fff0799f0351cf4c16
This commit is contained in:
Gijs Kruitbosch 2017-03-02 13:51:05 +00:00
parent 18f44a17d7
commit 88b23dd9a5

View File

@ -115,7 +115,7 @@ Links.prototype = {
aGuid, aHidden, aVisitCount, aTyped, aLastKnownTitle) {
// For new visits, if we're not batch processing, notify for a title update
if (!this._batchProcessingDepth && aVisitCount == 1 && aLastKnownTitle) {
this.onTitleChanged(aURI, aTitle, aGuid);
this.onTitleChanged(aURI, aLastKnownTitle, aGuid);
}
},