From b6eb7eb70528f2ea24713e5653532d932226494c Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Thu, 29 Aug 2019 12:23:48 +0200 Subject: [PATCH] done #2965 --- src/app/Http/Controllers/CubistPWAController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/Http/Controllers/CubistPWAController.php b/src/app/Http/Controllers/CubistPWAController.php index 2dc838d..bd48a8a 100644 --- a/src/app/Http/Controllers/CubistPWAController.php +++ b/src/app/Http/Controllers/CubistPWAController.php @@ -40,7 +40,7 @@ class CubistPWAController extends CubistFrontController public function favicon() { - $source = $this->data['global']->getImageFile('favicon_android', 'favicon_144'); + $source = $this->data['global']->getImageFile('favicon', 'favicon_144'); $dest = storage_path('favicon.ico'); if (!file_exists($dest) || filemtime($source) > filemtime($dest)) { $ico_lib = new PHP_ICO($source, array(array(16, 16), array(32, 32), array(64, 64), array(128, 128))); -- 2.39.5