Fix for when isGoogleLogin undefined

This commit is contained in:
bertybuttface 2022-12-26 00:40:56 +00:00 committed by GitHub
parent 9a4bed608a
commit 0b55624710
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ export const matrixBotPassword = process.env.MATRIX_BOT_PASSWORD as string;
/** ChatGPT specific stuff */
export const openAiEmail = process.env.OPENAI_EMAIL as string;
export const openAiPassword = process.env.OPENAI_PASSWORD as string;
export const isGoogleLogin = (process.env.IS_GOOGLE_LOGIN.toLowerCase() === "true") as boolean;
export const isGoogleLogin = process.env.IS_GOOGLE_LOGIN && process.env.IS_GOOGLE_LOGIN.toLowerCase() === "true";
if(accessToken === undefined) {
console.error("MATRIX_ACCESS_TOKEN env variable is undefined");