This commit is contained in:
Ceda EI 2024-10-13 20:28:07 +05:30
commit 2ca39208d9
1 changed files with 4 additions and 2 deletions

View File

@ -5,16 +5,18 @@ module.exports = (bot, feedback_id) => (ctx) => {
const from = ctx.message.from; const from = ctx.message.from;
let contactable = "The developer might contact you regarding your feedback."; let contactable = "The developer might contact you regarding your feedback.";
let message;
if (from.username) { if (from.username) {
bot.telegram.sendMessage(feedback_id, `Feedback from: @${from.username}`); message = `Feedback from: @${from.username}`;
} else { } else {
contactable = "The developer might not be able to contact you due to lack of your username."; contactable = "The developer might not be able to contact you due to lack of your username.";
message = `Feedback from User ${from.id}`;
} }
ctx.forwardMessage(feedback_id); bot.telegram.sendMessage(feedback_id, `${message} ${ctx.message.text}`).catch(console.log);
return `Thanks for the feedback! ${contactable}`; return `Thanks for the feedback! ${contactable}`;
} else { } else {