From fd6f2dc93b3638c56348f0f46404eebbfc1e4eeb Mon Sep 17 00:00:00 2001 From: Carlos Garcia Gomez Date: Sun, 8 May 2022 14:30:37 +0200 Subject: [PATCH] Force text/xml when serving xsig files. ------ Forzado el tipo text/xml cuando se sirven archivo xsig. --- Core/App/AppRouter.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/App/AppRouter.php b/Core/App/AppRouter.php index c2b75a50d5..40a500ed97 100644 --- a/Core/App/AppRouter.php +++ b/Core/App/AppRouter.php @@ -233,6 +233,7 @@ private function getMime(string $filePath): string return 'application/javascript'; case 'xml': + case 'xsig': return 'text/xml'; }