Log: [2025-09-15 18:03:01.050] [debug] Running command: "C:/ProgramData/HyperSpin/HyperSpin/\plugins\HyperspinCore Essentials\7zip\7za.exe"
Issue:
The command path uses mixed forward (/
) and back (\
) slashes.
While Windows tolerates this in many cases, certain command-line tools (like 7-Zip) can fail or behave unpredictably when given such paths. This makes it a latent source of bugs.
Cause:
Paths are likely being constructed via raw string concatenation instead of a path-aware method.
Example: (Not sure which languages the team is using)
basePath = "C:/ProgramData/HyperSpin/HyperSpin/";
subPath = "\plugins\HyperspinCore Essentials\7zip\7za.exe";
fullPath = basePath + subPath;
Recommended Comments
There are no comments to display.