This commit is contained in:
Dane Everitt 2022-02-26 12:01:05 -05:00
parent 0dddcfca36
commit 134ba508e2
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 3 additions and 3 deletions

View file

@ -31,8 +31,8 @@ class LocaleController extends Controller
{
$data = $this->translator->getLoader()->load($locale, str_replace('.', '/', $namespace));
return JsonResponse::create($data, 200, [
'E-Tag' => md5(json_encode($data)),
return new JsonResponse($data, 200, [
'E-Tag' => md5(json_encode($data)), // @phpstan-ignore-line
]);
}
}

View file

@ -8,7 +8,7 @@ i18n
.use(Backend)
.use(initReactI18next)
.init({
debug: process.env.NODE_ENV !== 'production',
debug: process.env.I18N_DEBUG === 'true',
lng: 'en',
fallbackLng: 'en',
keySeparator: '.',