Skip to content

Commit c1d40ff

Browse files
Merge pull request #25 from Laravel-Lang/1.x
Fixed determination of localization by the heading
2 parents c364cae + cfba8a3 commit c1d40ff

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

src/Middlewares/LocalizationByHeader.php

+5-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ protected function detect(Request $request): bool|float|int|string|null
1616
return null;
1717
}
1818

19-
return Locales::isInstalled(
20-
$this->strBefore($value, [',', ';'])
21-
);
19+
if (! Locales::isInstalled($this->strBefore($value, [',', ';']))) {
20+
return null;
21+
}
22+
23+
return $value;
2224
}
2325

2426
protected function strBefore(string $value, array $search): string

tests/Feature/Middlewares/HeaderTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
->assertSuccessful()
5353
->assertJsonPath($foo, LocaleValue::TranslationFrench);
5454

55-
assertEventDispatched();
55+
assertEventNotDispatched();
5656
})->with('uninstalled-locales');
5757

5858
test('unknown locale', function (int|string $locale) {
@@ -64,5 +64,5 @@
6464
->assertSuccessful()
6565
->assertJsonPath($foo, LocaleValue::TranslationFrench);
6666

67-
assertEventDispatched();
67+
assertEventNotDispatched();
6868
})->with('unknown-locales');

0 commit comments

Comments
 (0)