From cdc8cc13454bd4d0ecf4be27066b340521a0470f Mon Sep 17 00:00:00 2001 From: Jean Ouina Date: Fri, 22 May 2020 18:42:30 +0200 Subject: [PATCH] Fixed AppData Path --- src/common/paths.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/paths.ts b/src/common/paths.ts index 5ea9bd1..4ee383e 100644 --- a/src/common/paths.ts +++ b/src/common/paths.ts @@ -10,7 +10,7 @@ let userDataPath = null; let resourcesPath = null; function determineAppUserDataRoot() { - return path.join(app.getPath('appData'), "Lightcord"); + return app.getPath('appData') } function determineUserData(userDataRoot, buildInfo) {