diff --git a/server/src/modules/auth.ts b/server/src/modules/auth.ts index 39e6431c..81967912 100644 --- a/server/src/modules/auth.ts +++ b/server/src/modules/auth.ts @@ -55,7 +55,7 @@ export class Auth { //console.log("initialize Local Auth"); try { - const b = Buffer.from(process.env.KUBERO_USERS as string, 'base64').toString('ascii') + const b = process.env.KUBERO_USERS as string this.users = JSON.parse(b); } catch (error) { console.log("ERROR loading local Users");