From c648ef41f7e134565cc659094cc75dddc2b516ed Mon Sep 17 00:00:00 2001 From: Barry Chen Date: Tue, 4 Sep 2018 16:53:44 -0500 Subject: [PATCH] Stop capturing favicon URL. (#4801) --- addon/webextension/background/takeshot.js | 1 - 1 file changed, 1 deletion(-) diff --git a/addon/webextension/background/takeshot.js b/addon/webextension/background/takeshot.js index 9c41ac9ab1..6c2ca2fb49 100644 --- a/addon/webextension/background/takeshot.js +++ b/addon/webextension/background/takeshot.js @@ -10,7 +10,6 @@ this.takeshot = (function() { communication.register("takeShot", catcher.watchFunction((sender, options) => { const { captureType, captureText, scroll, selectedPos, shotId } = options; const shot = new Shot(main.getBackend(), shotId, options.shot); - shot.favicon = sender.tab.favIconUrl; let imageBlob = options.imageBlob; let capturePromise = Promise.resolve(); let openedTab;