diff --git a/lib/common/helper/system_helper.dart b/lib/common/helper/system_helper.dart index 152fc4e..6943e36 100644 --- a/lib/common/helper/system_helper.dart +++ b/lib/common/helper/system_helper.dart @@ -87,6 +87,9 @@ class SystemHelper { final path = confBox.get("custom_launcher_path"); if (path != null && path != "") { if (await File(path).exists()) { + if (skipEXE) { + return "${path.toString().replaceAll("\\RSI Launcher.exe", "")}\\"; + } return path; } }