Fix typo firstName -> first_name

This commit is contained in:
Ceda EI 2020-04-19 18:17:12 +05:30
parent 2914321b3c
commit 3ed015b584
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ module.exports = (random, kys, default_text, bot_text, excluded_names) => (ctx)
if (ctx.message.reply_to_message) {
const { from } = ctx.message.reply_to_message;
const name = from.username ? "@" + from.username : from.firstName;
const name = from.username ? "@" + from.username : from.first_name;
if (name == excluded_names[0])
return bot_text;
return random(kys)().replace(/##name##/g, name);