From c30d3a5e7fb50ecf2410444ccdbfff204ef55418 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 19 Nov 2021 05:59:24 +0000 Subject: [PATCH] header route fixed --- static/routes.config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/static/routes.config.php b/static/routes.config.php index 468a9f85ea..e3ab677610 100644 --- a/static/routes.config.php +++ b/static/routes.config.php @@ -474,6 +474,7 @@ return [ '/photo' => [ '/{name}' => [Module\Photo::class, [R::GET]], '/{type}/{id:\d+}' => [Module\Photo::class, [R::GET]], + '/{type:contact|header}/{guid}' => [Module\Photo::class, [R::GET]], // User Id Fallback, to remove after version 2021.12 '/{type}/{uid_ext:\d+\..*}' => [Module\Photo::class, [R::GET]], '/{type}/{nickname_ext}' => [Module\Photo::class, [R::GET]],