Skip to content

Commit

Permalink
Accept kdbx:// urls in Edit Entry view
Browse files Browse the repository at this point in the history
  • Loading branch information
varjolintu committed Dec 12, 2021
1 parent 12d16f6 commit 68aeed4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/core/Tools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ namespace Tools
bool checkUrlValid(const QString& urlField)
{
if (urlField.isEmpty() || urlField.startsWith("cmd://", Qt::CaseInsensitive)
|| urlField.startsWith("kdbx://", Qt::CaseInsensitive)
|| urlField.startsWith("{REF:A", Qt::CaseInsensitive)) {
return true;
}
Expand Down

0 comments on commit 68aeed4

Please sign in to comment.