From 0b835e187b17559b7d39aad1f6886b17d36b0c27 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sat, 13 Feb 2016 03:20:42 +1100 Subject: [PATCH] Fix sanitizing domain data when called from FF. --- common/modules/sanitizer.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/modules/sanitizer.jsm b/common/modules/sanitizer.jsm index 2f3f7397..a8cb4f4a 100644 --- a/common/modules/sanitizer.jsm +++ b/common/modules/sanitizer.jsm @@ -311,7 +311,7 @@ var Sanitizer = Module("sanitizer", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakRef // be called, and with much greater granularity. Only process this // event if it's triggered externally. if (!this.sanitizing) - this.sanitizeItems(null, Range(), data); + this.sanitizeItems(null, Range(), host); }, "browser:purge-session-history": function (subject, data) { // See above.