[bugfix] Adjust steam path after changing getPath("home") to $XDG_DATA_HOME (#922)

This commit is contained in:
corben78
2025-09-01 12:12:50 +02:00
parent 4a90ac466a
commit ec98a74dfd
+1 -1
View File
@@ -76,7 +76,7 @@ export class SteamService {
switch (process.platform) {
case "linux":
this.steamPath = path.join(app.getPath("home"), ".steam", "steam");
this.steamPath = path.join(app.getPath("home"), "Steam");
return this.steamPath;
case "win32": {
const res = await list(["HKLM\\SOFTWARE\\Valve\\Steam", "HKLM\\SOFTWARE\\WOW6432Node\\Valve\\Steam"]);