From cb113208bbdf60b48689e503331ab85e710d2b41 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Fri, 11 Mar 2022 16:24:19 -0500 Subject: [PATCH] fix: #10384 -- mixed up sizes for fallback touch icons --- src/meta/tags.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/meta/tags.js b/src/meta/tags.js index 4e5aeb6815..121c1c74c2 100644 --- a/src/meta/tags.js +++ b/src/meta/tags.js @@ -115,27 +115,27 @@ Tags.parse = async (req, data, meta, link) => { }, { rel: 'icon', sizes: '36x36', - href: `${relative_path}/assets/images/touch/192.png`, + href: `${relative_path}/assets/images/touch/36.png`, }, { rel: 'icon', sizes: '48x48', - href: `${relative_path}/assets/images/touch/144.png`, + href: `${relative_path}/assets/images/touch/48.png`, }, { rel: 'icon', sizes: '72x72', - href: `${relative_path}/assets/images/touch/96.png`, + href: `${relative_path}/assets/images/touch/72.png`, }, { rel: 'icon', sizes: '96x96', - href: `${relative_path}/assets/images/touch/72.png`, + href: `${relative_path}/assets/images/touch/96.png`, }, { rel: 'icon', sizes: '144x144', - href: `${relative_path}/assets/images/touch/48.png`, + href: `${relative_path}/assets/images/touch/144.png`, }, { rel: 'icon', sizes: '192x192', - href: `${relative_path}/assets/images/touch/36.png`, + href: `${relative_path}/assets/images/touch/192.png`, }, { rel: 'icon', sizes: '512x512',