Merge pull request #2482 from keepassxreboot/fix/manual_url_lowercase

Remove .toLowerCase() from manual URL add
This commit is contained in:
Sami Vänttinen 2025-03-14 21:58:11 +02:00 committed by GitHub
commit 609bcfa83b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -613,7 +613,7 @@ options.initSitePreferences = function() {
return;
}
let value = manualUrl.value.toLowerCase();
let value = manualUrl.value;
// Fills the last / char if needed. This ensures the compatibility with Match Patterns
if (slashNeededForUrl(value)) {