Compare commits

..

No commits in common. "2ca39208d9bc24f47e579f11147c37593a13da87" and "1d5c29564f17029e224750855c237e7cc5d8d1ea" have entirely different histories.

1 changed files with 2 additions and 4 deletions

View File

@ -5,18 +5,16 @@ 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) {
message = `Feedback from: @${from.username}`; bot.telegram.sendMessage(feedback_id, `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}`;
} }
bot.telegram.sendMessage(feedback_id, `${message} ${ctx.message.text}`).catch(console.log); ctx.forwardMessage(feedback_id);
return `Thanks for the feedback! ${contactable}`; return `Thanks for the feedback! ${contactable}`;
} else { } else {