Skip to content

Commit

Permalink
Actually enable telegram this time :ayy:
Browse files Browse the repository at this point in the history
  • Loading branch information
LunaUrsa committed Oct 14, 2023
1 parent 68df499 commit 1c0fc0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async function start() {
if (env.DISCORD_CLIENT_TOKEN && validateEnv('DISCORD')) await discordConnect();
// if (env.MATRIX_ACCESS_TOKEN && validateEnv('MATRIX') && env.NODE_ENV !== 'production') await startMatrix();
// if (env.IRC_PASSWORD && validateEnv('IRC') && env.NODE_ENV !== 'production') ircConnect();
if (env.TELEGRAM_TOKEN && validateEnv('TELEGRAM') && env.NODE_ENV !== 'production') await telegramConnect();
if (env.TELEGRAM_TOKEN && validateEnv('TELEGRAM')) await telegramConnect();
}

start();
Expand Down

0 comments on commit 1c0fc0f

Please sign in to comment.