fix: removing replace from transformation

This commit is contained in:
Chubby Granny Chaser
2025-05-12 12:55:55 +01:00
parent 1346ff49a5
commit 475ab4119b

View File

@@ -41,7 +41,7 @@ export class CloudSync {
const userProfile = String(values["USERPROFILE"]);
if (userProfile) {
return normalizePath(userProfile.replace("C:", "drive_c"));
return normalizePath(userProfile);
} else {
throw new Error("User profile not found in user.reg");
}