Open links and urls in AppImage

* Fixes #8721
This commit is contained in:
Jonathan White 2024-04-24 07:41:08 -04:00
parent 49fd85c975
commit 43ca4e7dfe
No known key found for this signature in database
GPG key ID: 440FC65F2E0C6E01
2 changed files with 8 additions and 0 deletions

View file

@ -1239,7 +1239,11 @@ void MainWindow::showUpdateCheckDialog()
void MainWindow::customOpenUrl(QString url)
{
#ifdef KEEPASSXC_DIST_APPIMAGE
QProcess::execute("xdg-open", {url});
#else
QDesktopServices::openUrl(QUrl(url));
#endif
}
void MainWindow::openDonateUrl()