Compare commits
2 Commits
1d5c29564f
...
2ca39208d9
Author | SHA1 | Date |
---|---|---|
Ceda EI | 2ca39208d9 | |
Ceda EI | 7cf9689420 |
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue