mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-10 22:25:44 -05:00
Don't mark URL references as invalid URL (#5380)
This commit is contained in:
parent
c67ebf19d4
commit
9bab5d5a33
2 changed files with 3 additions and 1 deletions
|
|
@ -263,7 +263,8 @@ namespace Tools
|
|||
|
||||
bool checkUrlValid(const QString& urlField)
|
||||
{
|
||||
if (urlField.isEmpty() || urlField.startsWith("cmd://", Qt::CaseInsensitive)) {
|
||||
if (urlField.isEmpty() || urlField.startsWith("cmd://", Qt::CaseInsensitive)
|
||||
|| urlField.startsWith("{REF:A", Qt::CaseInsensitive)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue