From 6d48040fc9e30401ed9f0cc5193bdc15435327d7 Mon Sep 17 00:00:00 2001 From: Tom Schuster Date: Wed, 28 Oct 2015 19:25:26 +0100 Subject: [PATCH] Bug 1217887 - Fix reference to href in ContentClick.jsm. r=mak --- browser/modules/ContentClick.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/modules/ContentClick.jsm b/browser/modules/ContentClick.jsm index 0b869c1e6ac7..8b024eb8f045 100644 --- a/browser/modules/ContentClick.jsm +++ b/browser/modules/ContentClick.jsm @@ -80,7 +80,7 @@ var ContentClick = { // visits across frames should be preserved. try { if (!PrivateBrowsingUtils.isWindowPrivate(window)) - PlacesUIUtils.markPageAsFollowedLink(href); + PlacesUIUtils.markPageAsFollowedLink(json.href); } catch (ex) { /* Skip invalid URIs. */ } } };