TelegramBot/telegram/utils/language-code.ts

9 lines
No EOL
191 B
TypeScript
Executable file

import { Context } from "telegraf";
export const languageCode = (ctx: Context) => {
if(ctx.from) {
return ctx.from.language_code
} else {
return 'en'
}
}