Fix URL open crash (#596)

This commit is contained in:
ashuntu
2023-07-07 13:23:05 -05:00
parent 10678096e5
commit 51d7a6289e
2 changed files with 32 additions and 5 deletions

View File

@ -34,5 +34,18 @@ namespace DesktopServices
*/
bool openUrl(const QUrl &url);
/**
* Determine whether the launcher is running in a Flatpak environment
*/
bool isFlatpak();
/**
* Determine whether the launcher is running in a Snap environment
*/
bool isSnap();
/**
* Determine whether the launcher is running in a sandboxed (Flatpak or Snap) environment
*/
bool isSandbox();
}