This commit is contained in:
xkeyC 2024-06-16 09:22:07 +08:00
parent 62289b3b30
commit a94f49eca2

View File

@ -87,6 +87,9 @@ class SystemHelper {
final path = confBox.get("custom_launcher_path"); final path = confBox.get("custom_launcher_path");
if (path != null && path != "") { if (path != null && path != "") {
if (await File(path).exists()) { if (await File(path).exists()) {
if (skipEXE) {
return "${path.toString().replaceAll("\\RSI Launcher.exe", "")}\\";
}
return path; return path;
} }
} }