You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So in vendor/brackets/craftable-pro/src/Translations/Repositories/LanguageLineRepository.php
// because Laravel & MySQL are case-insensitive by default, let's double check we have the right $languageLine
if ($languageLine && $languageLine->key === $key) {
If collation is case insensitive, this test is buggy because the query always return the same match.
if collation is case sensitive, this test is useless because query will find the good match
Issue
After a scan, listing show the same string multiple times :
Edit
By adding this log in vendor/brackets/craftable-pro/src/Translations/Repositories/LanguageLineRepository.php
Its a problem with case-insensitive query because it always return the first match:
The text was updated successfully, but these errors were encountered: