From 1a64408209c62f55118bfcf6deb4bd8c5b7b9966 Mon Sep 17 00:00:00 2001 From: Adam Tauber Date: Wed, 26 Jan 2022 01:13:18 +0100 Subject: [PATCH] [enh] download apple-touch-icon-precomposed type favicons --- ext/src/js/modules/document.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/src/js/modules/document.js b/ext/src/js/modules/document.js index ea8e38a..146034b 100644 --- a/ext/src/js/modules/document.js +++ b/ext/src/js/modules/document.js @@ -83,6 +83,7 @@ class Document { case 'icon': case 'shortcut icon': case 'apple-touch-icon': + case 'apple-touch-icon-precomposed': case 'fluid-icon': const icon = await downloadFile(this.absoluteUrl(node.getAttribute('href'))); node.setAttribute('href', icon);