mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #2482 from keepassxreboot/fix/manual_url_lowercase
Remove .toLowerCase() from manual URL add
This commit is contained in:
commit
609bcfa83b
1 changed files with 1 additions and 1 deletions
|
|
@ -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)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue