From c020bf6ea3a0c807cb6070a71d164de06f10f88c Mon Sep 17 00:00:00 2001
From: =?utf8?q?Rapha=C3=ABl=20Gertz?= <git@rapsys.eu>
Date: Wed, 24 Feb 2021 00:44:00 +0100
Subject: [PATCH] Remove locale detection Google indexing fail miserably with
 magic locale detection

---
 EventSubscriber/LocaleSubscriber.php | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/EventSubscriber/LocaleSubscriber.php b/EventSubscriber/LocaleSubscriber.php
index 2d25ba6..5975bd3 100644
--- a/EventSubscriber/LocaleSubscriber.php
+++ b/EventSubscriber/LocaleSubscriber.php
@@ -34,22 +34,22 @@ class LocaleSubscriber implements EventSubscriberInterface {
 				$request->getSession()->set('_locale', $preferred);
 
 				//Send vary header as current page locale depend on it
-				header('Vary: accept-language');
+				#header('Vary: accept-language');
 
 				//Set locale
-				$request->setLocale($preferred);
+				#$request->setLocale($preferred);
 
 				//Set default locale
-				$request->setDefaultLocale($preferred);
+				#$request->setDefaultLocale($preferred);
 
 				//Get router context
-				$context = $this->router->getContext();
+				#$context = $this->router->getContext();
 
 				//Set context locale
-				$context->setParameter('_locale', $preferred);
+				#$context->setParameter('_locale', $preferred);
 
 				//Set back router context
-				$this->router->setContext($context);
+				#$this->router->setContext($context);
 
 				//End process
 				return;
-- 
2.41.3