From 4a3dbd3aefc43e009058edf0c6618d09dd6b66d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Rynning-T=C3=B8nnesen?= Date: Tue, 3 Oct 2017 16:36:38 +0200 Subject: [PATCH] sending precomposed instead of apple-touch --- server/routing/icons_routing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/routing/icons_routing.js b/server/routing/icons_routing.js index 113f12a5..f7c423bc 100644 --- a/server/routing/icons_routing.js +++ b/server/routing/icons_routing.js @@ -14,7 +14,7 @@ router.route('/browserconfig.xml').get(function(req, res, next) { }); router.route('/apple-touch-icon.png').get(function(req, res, next) { - res.sendFile(path.join(pathThumbnails, '/public/assets/images/apple-touch-icon.png')); + res.sendFile(path.join(pathThumbnails, '/public/assets/images/apple-touch-icon-precomposed.png')); }); router.route('/apple-touch-icon-precomposed.png').get(function(req, res, next) {