use bundled iproxy on AppImage builds

This commit is contained in:
uncor3
2025-10-22 01:17:50 +00:00
parent 518f9b803d
commit 493c0fc7ea
4 changed files with 35 additions and 16 deletions
+3 -3
View File
@@ -207,11 +207,11 @@ void iFuseWidget::onMountClicked()
Check if running in AppImage
this is set by the plugin script
*/
if (qEnvironmentVariableIsSet("IFUSE_APPIMAGE")) {
ifuseExecutablePath = qgetenv("IFUSE_APPIMAGE");
if (qEnvironmentVariableIsSet("IFUSE_BIN_APPIMAGE")) {
ifuseExecutablePath = qgetenv("IFUSE_BIN_APPIMAGE");
if (ifuseExecutablePath.isEmpty()) {
setStatusMessage("Error: Running in AppImage mode, but "
"IFUSE_APPIMAGE is not set.",
"IFUSE_BIN_APPIMAGE is not set.",
true);
return;
}