diff --git a/src/util/desktophelper.cpp b/src/util/desktophelper.cpp index 5cd0944d4fc..378a354d96e 100644 --- a/src/util/desktophelper.cpp +++ b/src/util/desktophelper.cpp @@ -90,8 +90,8 @@ bool selectInXfce(const QString& path) { #endif void selectViaCommand(const QString& path) { -#ifdef Q_OS_IOS - qWarning() << "Starting process (" << path << ") is not supported on iOS!"; +#if defined(Q_OS_IOS) || defined(Q_OS_WASM) + qWarning() << "Starting process (" << path << ") is not supported on iOS or the web!"; #else QStringList arguments = sSelectInFileBrowserCommand.split(" "); // No escaping required because QProcess bypasses the shell