From b2d0d9200ef1811f45907f7563dcb51f952cfe75 Mon Sep 17 00:00:00 2001 From: Extarys Date: Sun, 24 Jan 2021 23:47:59 -0500 Subject: [PATCH] add route for webmanifest --- static/routes.config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/static/routes.config.php b/static/routes.config.php index 4ad122fbf2..21ccd14a79 100644 --- a/static/routes.config.php +++ b/static/routes.config.php @@ -301,6 +301,7 @@ return [ '/magic' => [Module\Magic::class, [R::GET]], '/maintenance' => [Module\Maintenance::class, [R::GET]], '/manifest' => [Module\Manifest::class, [R::GET]], + '/friendica.webmanifest' => [Module\Manifest::class, [R::GET]], '/modexp/{nick}' => [Module\PublicRSAKey::class, [R::GET]], '/newmember' => [Module\Welcome::class, [R::GET]], '/nodeinfo/1.0' => [Module\NodeInfo110::class, [R::GET]],