mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-02 19:46:06 -04:00
Fix #3259 Use QUrl::fromUserInput to parse a url with correct scheme
Signed-off-by: sohamg <sohamg2@gmail.com>
This commit is contained in:
parent
38524507d5
commit
7c45d4f328
1 changed files with 1 additions and 1 deletions
|
@ -696,7 +696,7 @@ void DatabaseWidget::openUrlForEntry(Entry* entry)
|
|||
}
|
||||
}
|
||||
} else {
|
||||
QUrl url = QUrl(entry->url());
|
||||
QUrl url = QUrl::fromUserInput(entry->url());
|
||||
if (!url.isEmpty()) {
|
||||
QDesktopServices::openUrl(url);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue